/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-2: #f0fdf4;
  --bg-card: #ffffff;
  --bg-card-hover: #f7fef7;
  --border: #c8e6c9;
  --accent: #2e7d32;
  --accent-2: #4caf50;
  --accent-glow: rgba(76, 175, 80, 0.10);
  --text: #1a2e1a;
  --text-muted: #4a6a4a;
  --text-dim: #7a9a7a;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(46,125,50,0.08);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0fdf4; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.35;
  overflow: visible;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 0 4px 0;
}

.accent {
  color: var(--accent);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 70px 0;   }
.bg-dark-2 { background: #f0fdf4; }
.center { text-align: center; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.section-tag.center { display: block; text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--text);
  line-height: 1.4;
  overflow: visible;
}
.section-title.center { text-align: center; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #388e3c; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(76,175,80,0.3); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--accent);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--accent); color: white; transform: translateY(-2px); }

.btn-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(76,175,80,0.3);
  transition: var(--transition);
}
.btn-sm:hover { background: var(--accent); color: white; }

.btn-nav {
  padding: 10px 22px;
  background: var(--accent);
  color: white !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav:hover { background: #388e3c; }

.full-btn { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  color: #4a6a4a;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2e1a;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
 padding: 160px 80px 80px; 
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 55%, #f0fdf4 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 { width: 600px; height: 600px; background: rgba(76,175,80,0.15); top: -200px; right: -200px; }
.glow-2 { width: 400px; height: 400px; background: rgba(129,199,132,0.06); bottom: -100px; left: -100px; }

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent-glow);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: 50px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
  line-height: 1.4;
  overflow: visible;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-dim); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* CODE CARD */
.hero-visual { animation: fadeUp 0.6s 0.2s ease both; }
.code-card {
  background: #1a2e1a;
  border: 1px solid #2d4a2d;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,125,50,0.2), 0 0 0 1px rgba(76,175,80,0.2);
}
.code-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #0f1f0f;
  border-bottom: 1px solid #2d4a2d;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.code-title { color: #6a9a6a; font-size: 13px; margin-left: 8px; }
.code-body { padding: 24px; font-family: 'Courier New', monospace; font-size: 14px; line-height: 1.9; background: #1a2e1a; color: #c8e6c9; }
.code-line { display: block; }
.code-line.pl { padding-left: 20px; }
.kw { color: #c792ea; }
.var { color: #82aaff; }
.str { color: #c3e88d; }
.fn { color: #82aaff; }
.cm { color: #546e7a; font-style: italic; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 80px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, #ffffff 50%, #f0fdf4 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--text); margin-bottom: 20px; line-height: 1.4; overflow: visible; }
.page-hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.card-arrow { position: absolute; bottom: 24px; right: 24px; color: var(--accent); font-size: 18px; transition: var(--transition); }
.service-card:hover .card-arrow { transform: translate(4px, -4px); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px;  align-items: center; }
.why-desc { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }
.why-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-item h4 { font-size: 16px; color: var(--white); margin-bottom: 4px; }
.why-item p { color: var(--text-muted); font-size: 14px; }

/* ===== PORTFOLIO PREVIEW ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.port-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.port-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-4px); }
.port-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.port-emoji { font-size: 4rem; }
.port-info { padding: 24px; }
.port-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.port-info h4 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.port-info p { color: var(--text-muted); font-size: 13px; }
.center-btn { text-align: center; margin-top: 48px; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #1a2e1a;
  border-top: 1px solid #2d4a2d;
  border-bottom: 1px solid #2d4a2d;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: #ffffff; margin-bottom: 16px; line-height: 1.4; overflow: visible; }
.cta-content p { color: #a5c8a5; font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #1a2e1a; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: #a5c8a5; font-size: 14px; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-brand .logo { margin-bottom: 4px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { font-size: 1.3rem; transition: var(--transition); }
.social-links a:hover { transform: scale(1.2); }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-head);
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #a5c8a5; font-size: 14px; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent); }
.footer-contact p { color: #a5c8a5; font-size: 14px; margin-bottom: 10px; }
.footer-contact a { color: #a5c8a5; transition: var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: #6a8a6a;
  font-size: 13px;
}

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;  }
.about-img-block { position: relative; }
.about-img-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-inner { text-align: center; color: var(--text-muted); }
.about-img-inner p { margin-top: 12px; font-size: 14px; }
.about-tag-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}
.about-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.about-values { margin-top: 32px; }
.value-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.value-item span { font-size: 1.5rem; flex-shrink: 0; }
.value-item h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
.value-item p { color: var(--text-muted); font-size: 13px; }

.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.number-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.big-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--accent); display: block; }
.number-card p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.val-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.val-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-4px); }
.val-icon { font-size: 2.5rem; margin-bottom: 16px; }
.val-card h4 { font-size: 16px; color: var(--white); margin-bottom: 8px; }
.val-card p { color: var(--text-muted); font-size: 13px; }

/* ===== SERVICES DETAILED ===== */
.services-detailed { display: flex; flex-direction: column; gap: 24px; }
.service-detail-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: rgba(76,175,80,0.4); }
.sd-icon { font-size: 3.5rem; display: flex; align-items: center; justify-content: center; }
.sd-content h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.sd-content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.sd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sd-tags span {
  padding: 4px 12px;
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent-2);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.step-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.process-step h4 { color: var(--white); margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 13px; }
.process-arrow { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; }

/* ===== PORTFOLIO FULL ===== */
.portfolio-full-grid { display: flex; flex-direction: column; gap: 32px; }
.pf-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.pf-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-2px); }
.pf-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 220px;
}
.pf-emoji { font-size: 5rem; }
.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.pf-card:hover .pf-overlay { opacity: 1; }
.pf-visit {
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}
.pf-details { padding: 36px; }
.pf-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pf-tech { color: var(--text-dim); font-size: 12px; }
.pf-details h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.pf-details p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.pf-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pf-highlights span { font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,0.04); padding: 4px 10px; border-radius: 6px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(76,175,80,0.08), var(--bg-card));
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.price-header { text-align: center; margin-bottom: 24px; }
.price-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.price-header h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.price-header p { color: var(--text-muted); font-size: 13px; }
.price-amount { text-align: center; margin-bottom: 32px; }
.currency { font-size: 24px; color: var(--accent); vertical-align: top; margin-top: 8px; display: inline-block; }
.amount { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); }
.price-features { margin-bottom: 32px; }
.price-features li { padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-features li:last-child { border: none; }

.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.addon-card:hover { border-color: rgba(76,175,80,0.4); transform: translateY(-2px); }
.addon-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.addon-card h4 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.addon-card p { color: var(--text-muted); font-size: 12px; margin-bottom: 12px; }
.addon-card strong { color: var(--accent); font-family: var(--font-head); font-size: 18px; }

.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.faq-item h4 { font-size: 16px; color: var(--white); margin-bottom: 10px; }
.faq-item p { color: var(--text-muted); font-size: 14px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 28px; color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(76,175,80,0.4); }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h5 { font-size: 13px; color: var(--text-dim); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text); }
.working-hours { padding: 20px; background: var(--accent-glow); border: 1px solid rgba(76,175,80,0.2); border-radius: var(--radius); }
.working-hours h5 { font-size: 14px; color: var(--accent); margin-bottom: 10px; }
.working-hours p { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 22px; color: var(--white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  background: rgba(76,175,80,0.05);
}
.form-group select option { background: var(--bg-card); }
.form-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }
.form-note a { color: var(--accent); }

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

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #c8e6c9;
    box-shadow: -4px 0 24px rgba(46,125,50,0.10);
    flex-direction: column;
    padding: 80px 32px 40px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e8f5e9;
    width: 100%;
    color: #1a2e1a;
    display: block;
  }
  .nav-links a:hover, .nav-links a.active {
    color: #2e7d32;
    background: transparent;
    padding-left: 8px;
  }
  .btn-nav {
    margin-top: 8px;
    text-align: center;
    background: #2e7d32 !important;
    color: white !important;
    border-radius: 10px;
    padding: 12px 0 !important;
    border-bottom: none !important;
  }
  .hamburger { display: flex; }
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 140px 40px 80px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .pf-card { grid-template-columns: 1fr; }
  .pf-visual { min-height: 180px; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 24px 60px; }
  .page-hero { padding: 120px 24px 60px; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .sd-icon { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
}

/* ===== IMAGE ENHANCEMENTS ===== */

/* Hero background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1605379399642-870262d3d051?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  z-index: 0;
}

/* Portfolio image cards */
.port-img-cover {
  position: relative;
  height: 180px;
}
.port-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  border-radius: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.port-tag-float {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(76,175,80,0.85);
  color: white;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

/* Service icon with background image */
.sd-icon-img {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sd-icon-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  border-radius: 12px;
}
.sd-icon-img > * { position: relative; z-index: 1; }

/* About image */
.about-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Portfolio full page visual */
.pf-visual {
  background-size: cover !important;
  background-position: center !important;
  min-height: 220px;
  position: relative;
}

/* ===== PRICING PAGE IMAGES ===== */
.price-plan-img {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.price-plan-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
  border-radius: 12px;
}

/* ===== CONTACT PAGE IMAGES ===== */
.contact-visual-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-visual-img::after {
  content: '📍 Kalyan Nagar, Kolkata';
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ===== ANIMATION STYLES ===== */

/* Scroll progress bar */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(46,125,50,0.4);
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero content stagger */
.hero-badge    { animation: fadeUp 0.6s 0.1s ease both; }
.hero-title    { animation: fadeUp 0.7s 0.2s ease both; }
.hero-sub      { animation: fadeUp 0.7s 0.35s ease both; }
.hero-btns     { animation: fadeUp 0.7s 0.45s ease both; }
.hero-stats    { animation: fadeUp 0.7s 0.55s ease both; }
.hero-visual   { animation: fadeUp 0.8s 0.3s ease both; }

/* Page hero stagger */
.page-hero .section-tag  { animation: fadeUp 0.6s 0.1s ease both; }
.page-hero h1            { animation: fadeUp 0.7s 0.2s ease both; }
.page-hero p             { animation: fadeUp 0.7s 0.35s ease both; }

/* Floating animation for code card */
.code-card {
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Glow pulse */
.glow-1 { animation: glowPulse 6s ease-in-out infinite; }
.glow-2 { animation: glowPulse 8s ease-in-out infinite reverse; }
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.1); }
}

/* Button shine effect */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 125%; }

/* Number card count animation */
.big-num, .stat-num {
  display: inline-block;
  transition: transform 0.3s ease;
}
.number-card:hover .big-num { transform: scale(1.1); }

/* Service card icon bounce */
.service-card:hover .service-icon {
  animation: bounce 0.5s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-8px); }
  70%       { transform: translateY(-4px); }
}

/* Portfolio card image zoom */
.port-img-cover {
  overflow: hidden;
}
.port-img-cover > div {
  transition: transform 0.5s ease;
}
.port-card:hover .port-img-cover {
  background-size: 110% !important;
}

/* FAQ hover */
.faq-item {
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(76,175,80,0.4);
  transform: translateX(6px);
}

/* Pricing card featured glow */
.price-card.featured {
  box-shadow: 0 0 40px rgba(76,175,80,0.15);
}
.price-card.featured:hover {
  box-shadow: 0 0 60px rgba(76,175,80,0.25);
}

/* Smooth page transition */
body {
  animation: pageFadeIn 0.4s ease;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== TECH STACK ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tech-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.tech-category:hover {
  border-color: rgba(76,175,80,0.4);
  transform: translateY(-3px);
}
.tech-category h4 {
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-pills span {
  padding: 5px 12px;
  background: rgba(46,125,50,0.06);
  border: 1px solid rgba(46,125,50,0.2);
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Inter', monospace;
}

/* ===== SERVICE USE CASES ===== */
.sd-usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.sd-usecases span {
  font-size: 12px;
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ===== LIGHT THEME OVERRIDES ===== */
.navbar { border-bottom: 1px solid transparent; }
.navbar.scrolled { border-bottom: 1px solid var(--border); box-shadow: 0 2px 20px rgba(46,125,50,0.06); }

.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(46,125,50,0.06); }

.service-card h3 { color: var(--text); }
.service-card p { color: var(--text-muted); }
.service-card { box-shadow: 0 2px 16px rgba(46,125,50,0.06); }
.service-card:hover { box-shadow: 0 8px 32px rgba(46,125,50,0.12); border-color: rgba(46,125,50,0.3); }

.port-card:hover { box-shadow: 0 8px 32px rgba(46,125,50,0.12); border-color: rgba(46,125,50,0.3); }
.val-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: 0 8px 24px rgba(46,125,50,0.08); }
.pf-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: 0 8px 32px rgba(46,125,50,0.10); }
.addon-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: 0 4px 16px rgba(46,125,50,0.08); }

.faq-item { background: #ffffff; box-shadow: 0 2px 12px rgba(46,125,50,0.05); }
.faq-item:hover { border-color: rgba(46,125,50,0.3); }
.faq-item h4 { color: var(--text); }
.faq-item p { color: var(--text-muted); }

.service-detail-card { box-shadow: 0 2px 16px rgba(46,125,50,0.06); }
.service-detail-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: 0 8px 32px rgba(46,125,50,0.10); }
.sd-content h3 { color: var(--text); }
.sd-content p { color: var(--text-muted); }

.tech-category { box-shadow: 0 2px 12px rgba(46,125,50,0.05); }
.tech-category:hover { box-shadow: 0 8px 24px rgba(46,125,50,0.10); }
.tech-category h4 { color: var(--accent); }

.price-card.featured { box-shadow: 0 8px 40px rgba(46,125,50,0.15); }

.contact-item { box-shadow: 0 2px 12px rgba(46,125,50,0.05); }
.contact-item:hover { border-color: rgba(46,125,50,0.3); box-shadow: 0 4px 20px rgba(46,125,50,0.08); }
.contact-item h5 { color: var(--text-muted); }
.contact-item p { color: var(--text); }

.working-hours { background: rgba(46,125,50,0.05); border: 1px solid rgba(46,125,50,0.15); }
.working-hours h5 { color: var(--accent); }
.working-hours p { color: var(--text-muted); }

.contact-form-wrap { box-shadow: 0 4px 24px rgba(46,125,50,0.08); }
.contact-form-wrap h3 { color: var(--text); }

.form-group input, .form-group textarea, .form-group select {
  background: #f8fdf8;
  border-color: var(--border);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.08);
}
.form-group select option { background: #ffffff; color: var(--text); }

.process-step { box-shadow: 0 2px 12px rgba(46,125,50,0.05); }
.process-step h4 { color: var(--text); }
.process-step p { color: var(--text-muted); }

.about-img-card { border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(46,125,50,0.08); }
.about-tag-float { background: var(--accent); }

.val-card h4 { color: var(--text); }
.val-card p { color: var(--text-muted); }

.hero-sub { color: var(--text-muted); }
.why-desc { color: var(--text-muted); }
.why-item h4 { color: var(--text); }
.why-item p { color: var(--text-muted); }

.stat-label { color: var(--text-muted); }
.stat-divider { background: var(--border); }

.hero-badge {
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.2);
  color: var(--accent);
}

.port-info h4 { color: var(--text); }
.port-info p { color: var(--text-muted); }
.pf-details h3 { color: var(--text); }
.pf-details p { color: var(--text-muted); }

.price-header h3 { color: var(--text); }
.price-header p { color: var(--text-muted); }
.amount { color: var(--text); }
.price-features li { color: var(--text-muted); border-bottom: 1px solid var(--border); }

.addon-card h4 { color: var(--text); }
.addon-card p { color: var(--text-muted); }

.section-tag.center { display: block; }

.contact-info h3 { color: var(--text); }
.contact-info > p { color: var(--text-muted); }

.about-desc { color: var(--text-muted); }
.value-item h4 { color: var(--text); }
.value-item p { color: var(--text-muted); }

.number-card p { color: var(--text-muted); }

/* Gradient text on light bg */
.gradient-text {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* btn-ghost for light theme */
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* CTA section ghost btn */
.cta-section .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}
.cta-section .btn-ghost:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }

/* Page hero bg */
.page-hero .section-tag { color: var(--accent); }


/* ===== SOFTWARE PRICING ===== */
.software-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sw-price-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.sw-price-card:hover {
  border-color: rgba(46,125,50,0.35);
  box-shadow: 0 8px 32px rgba(46,125,50,0.10);
  transform: translateY(-3px);
}
.sw-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(46,125,50,0.08);
  border: 1px solid rgba(46,125,50,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-content h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.sw-content > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.sw-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.sw-features span {
  font-size: 13px;
  color: var(--text-muted);
}
.sw-features span::before { margin-right: 4px; }
.sw-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sw-price-tag { display: flex; flex-direction: column; }
.sw-from { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.sw-amount { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--accent); }
 
@media (max-width: 900px) {
  .software-pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sw-price-card { flex-direction: column; gap: 16px; }
}


/* ===== CONTACT PAGE — TRUST STRIP ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(46,125,50,0.35);
  box-shadow: 0 8px 24px rgba(46,125,50,0.10);
}
.trust-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h5 { font-size: 13px; color: var(--text); margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 1024px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: -20px; }
}
@media (max-width: 640px) {
  .trust-strip { grid-template-columns: 1fr; margin-top: -16px; }
}

/* ===== CONTACT PAGE — MAP SECTION ===== */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(8%) contrast(1.02);
}
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.map-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-footer-item p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .map-card iframe { height: 300px; }
  .map-footer { flex-direction: column; align-items: flex-start; }
}