/* ═══════════════════════════════════════════════════════
   Dhruv Softtech — Main Stylesheet
   Design System: Dark Forest Green + Gold (matching booking.dhruvsofttech.in)
═══════════════════════════════════════════════════════ */

:root {
  --primary:     #1B4332;
  --primary-lt:  #2d6a4f;
  --gold:        #D4A017;
  --gold-lt:     #f0c040;
  --dark:        #0a1a0f;
  --dark2:       #0f2318;
  --cream:       #F8F5EE;
  --text:        #1a1a1a;
  --text-muted:  #666;
  --border:      rgba(27,67,50,0.18);
  --white:       #ffffff;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 0 24px;
}
.navbar-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--dark);
  font-family: 'Playfair Display', serif; flex-shrink: 0;
}
.navbar-logo-text { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 18px; display: block; line-height: 1.1; }
.navbar-logo-sub  { color: #4a7a5a; font-size: 10px; letter-spacing: 1.5px; display: block; }
.navbar-links { display: flex; align-items: center; gap: 28px; }
.navbar-links a { color: #9aaa9a; font-size: 14px; transition: color .2s; font-weight: 400; }
.navbar-links a:hover, .navbar-links a.active { color: var(--gold); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.btn-hire {
  background: var(--gold); color: var(--dark);
  padding: 9px 22px; border-radius: 25px;
  font-size: 13px; font-weight: 600; transition: background .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-hire:hover { background: var(--gold-lt); }
.navbar-mobile-toggle {
  display: none; background: none; border: none;
  color: #aaa; font-size: 24px; cursor: pointer; padding: 4px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 12px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-primary:hover { background: var(--gold-lt); }
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--gold);
  padding: 12px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-green:hover { background: var(--primary-lt); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(212,160,23,0.5); color: var(--gold);
  background: transparent; padding: 11px 24px; border-radius: 8px;
  font-size: 14px; cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: rgba(212,160,23,0.1); border-color: var(--gold); }

/* ── Section layout ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold); font-size: 11px; padding: 4px 18px;
  border-radius: 20px; letter-spacing: 2.5px; margin-bottom: 16px;
}
.section-title { font-size: clamp(28px,4vw,38px); color: var(--text); margin-bottom: 12px; }
.section-sub  { color: var(--text-muted); font-size: 15px; max-width: 600px; margin: 0 auto; }
.gold-divider { width: 48px; height: 3px; background: var(--gold); margin: 16px auto 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0d2a1a 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 22px);
}
.page-badge {
  display: inline-block; border: 1px solid rgba(212,160,23,0.4);
  background: rgba(212,160,23,0.08); color: var(--gold);
  font-size: 11px; padding: 5px 20px; border-radius: 20px;
  letter-spacing: 2px; margin-bottom: 16px; position: relative;
}
.page-title { font-size: clamp(30px,5vw,56px); color: #fff; margin-bottom: 12px; position: relative; }
.page-sub { color: rgba(255,255,255,0.5); font-size: 16px; position: relative; }

/* ── Stats Bar ── */
.stats-bar { background: var(--primary); padding: 32px 24px; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat-item { text-align: center; }
.stat-num  { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--gold); font-weight: 600; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 4px; letter-spacing: 1px; }

/* ── Hero Slider ── */
.hero-slider {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden; background: var(--dark);
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: all; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 7s ease-out;
  background-color: var(--dark2);
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; }
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; padding: 0 80px;
  max-width: 960px; left: 0; right: 0; margin: 0 auto;
}
.slide-content.pos-center { align-items: center; text-align: center; }
.slide-content.pos-left   { align-items: flex-start; text-align: left; margin: 0; padding-left: 80px; }
.slide-badge-el {
  display: inline-block; border: 1px solid rgba(212,160,23,0.5);
  background: rgba(212,160,23,0.1); color: var(--gold);
  font-size: 11px; padding: 5px 22px; border-radius: 20px;
  letter-spacing: 3px; margin-bottom: 22px;
  animation: fadeInUp .8s .2s both;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,6vw,72px);
  color: #fff; line-height: 1.15; margin-bottom: 18px;
  animation: fadeInUp .8s .4s both;
}
.slide-title span { color: var(--gold); }
.slide-desc {
  color: rgba(255,255,255,0.65); font-size: clamp(14px,2vw,18px);
  margin-bottom: 36px; max-width: 600px; line-height: 1.8;
  animation: fadeInUp .8s .6s both;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .8s .8s both; }
.slide-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 30px;
  font-size: 15px; font-weight: 600; transition: all .3s;
  border: 2px solid transparent; text-decoration: none;
}
.slide-btn.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.slide-btn.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.4); }
.slide-btn.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.slide-btn.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: all .3s; z-index: 10;
}
.slider-arrow:hover { background: rgba(212,160,23,.8); border-color: var(--gold); color: var(--dark); }
.slider-prev { left: 20px; } .slider-next { right: 20px; }
.slider-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.slider-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.1); z-index: 10; }
.slider-progress-bar { height: 100%; background: var(--gold); width: 0%; transition: width .1s linear; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: 12px; padding: 30px;
  border: 1px solid rgba(0,0,0,.07); position: relative;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.service-card.gold-top::before { background: var(--gold); }
.service-card.green-top::before { background: var(--primary); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 54px; height: 54px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px;
}
.service-icon.gold-bg { background: rgba(212,160,23,0.12); color: var(--gold); }
.service-icon.green-bg { background: rgba(27,67,50,0.1); color: var(--primary); }
.service-title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.service-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ── Projects ── */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.project-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-header {
  background: var(--dark); padding: 28px 24px; min-height: 120px;
  display: flex; flex-direction: column; justify-content: flex-end; position: relative;
}
.project-header::before {
  content: '</>'; position: absolute; top: 14px; right: 18px;
  color: rgba(212,160,23,0.12); font-family: monospace; font-size: 34px; font-weight: 700;
}
.project-featured-badge {
  position: absolute; top: 14px; left: 20px;
  background: var(--gold); color: var(--dark);
  font-size: 10px; padding: 3px 10px; border-radius: 20px; font-weight: 600; letter-spacing: 1px;
}
.project-cat   { color: var(--gold); font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
.project-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.3; }
.project-body  { padding: 22px; }
.project-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.project-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.project-tag   { background: rgba(27,67,50,0.08); color: var(--primary); font-size: 11px; padding: 3px 10px; border-radius: 4px; font-weight: 500; }
.project-link  { color: var(--gold); font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.project-link:hover { gap: 10px; }

/* ── About Section ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-badge {
  background: rgba(27,67,50,0.08); border: 1px solid rgba(27,67,50,0.15);
  color: var(--primary); padding: 8px 18px; border-radius: 6px;
  font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 8px;
}
.about-badge i { color: var(--gold); }
.skills-card { background: var(--dark); border-radius: 16px; padding: 32px; border: 1px solid rgba(212,160,23,0.15); }
.skills-card-title { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 22px; }
.skill-row { margin-bottom: 18px; }
.skill-label { display: flex; justify-content: space-between; color: #8a9a8a; font-size: 12px; margin-bottom: 7px; }
.skill-label span:last-child { color: var(--gold); }
.skill-bar  { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.skill-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--primary), var(--gold)); }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.team-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,.07); text-align: center; }
.team-photo { background: var(--dark); height: 200px; display: flex; align-items: center; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder { width: 90px; height: 90px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; }
.team-body { padding: 24px; }
.team-name { font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 4px; font-family: 'Playfair Display', serif; }
.team-role { font-size: 12px; color: var(--gold); letter-spacing: 1px; margin-bottom: 12px; }
.team-bio  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.team-social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-social a { width: 34px; height: 34px; background: rgba(27,67,50,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; transition: all .2s; }
.team-social a:hover { background: var(--primary); color: var(--gold); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: #fff; border-radius: 12px; padding: 28px; border: 1px solid rgba(0,0,0,.07); position: relative; }
.testi-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 80px; color: rgba(212,160,23,0.1); font-family: 'Playfair Display', serif; line-height: 1; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text  { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 17px; font-family: 'Playfair Display', serif; flex-shrink: 0; }
.testi-name    { font-weight: 600; font-size: 14px; color: var(--text); }
.testi-company { font-size: 12px; color: var(--text-muted); }

/* ── Gallery ── */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-item  { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(10,26,15,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gallery-item:hover .gallery-overlay { background: rgba(10,26,15,0.5); }
.gallery-overlay i { color: var(--gold); font-size: 32px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff; font-size: 12px; transform: translateY(100%); transition: transform .3s; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { background: rgba(27,67,50,0.08); color: var(--primary); border: 1px solid rgba(27,67,50,0.2); padding: 8px 20px; border-radius: 24px; font-size: 13px; cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--gold); border-color: var(--primary); }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 9999; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.open { display: flex; }
.lb-img  { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-cap  { color: #aaa; margin-top: 14px; font-size: 14px; text-align: center; max-width: 600px; }
.lb-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 38px; cursor: pointer; background: none; border: none; line-height: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: #fff; font-size: 28px; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(212,160,23,.6); }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.info-icon { width: 46px; height: 46px; background: rgba(27,67,50,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; color: var(--primary); }
.info-lbl  { font-size: 10px; color: #888; margin-bottom: 3px; letter-spacing: 1px; }
.info-val  { font-size: 15px; font-weight: 500; color: var(--text); }
.info-val a { color: var(--primary); }
.info-val a:hover { text-decoration: underline; }
.contact-form-card { background: #fff; border-radius: 16px; padding: 38px; border: 1px solid rgba(0,0,0,.08); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; color: #666; margin-bottom: 6px; font-weight: 500; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid #e0e0e0; border-radius: 8px;
  padding: 11px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border .2s; outline: none; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 13px; font-size: 15px; }

/* ── Alerts ── */
.alert { padding: 13px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32; }
.alert-error   { background: #ffebee; color: #c62828; border-left: 4px solid #c62828; }
.alert-info    { background: rgba(212,160,23,0.1); color: #7a5a00; border-left: 4px solid var(--gold); }

/* ── Why Us cards ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.why-item { text-align: center; }
.why-icon { width: 64px; height: 64px; background: rgba(27,67,50,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; color: var(--primary); transition: background .2s; }
.why-item:hover .why-icon { background: var(--primary); color: var(--gold); }
.why-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.why-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── CTA Band ── */
.cta-band { background: var(--dark); padding: 72px 24px; text-align: center; }
.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: 36px; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.5); font-size: 16px; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Hero (home) ── */
.hero-section { background: linear-gradient(135deg,var(--dark) 0%,var(--dark2) 55%,#0d2a1a 100%); padding: 100px 24px; position: relative; overflow: hidden; }
.hero-section::before { content:''; position:absolute; inset:0; background: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='%23D4A017' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width:1200px; margin:0 auto; position:relative; display:grid; grid-template-columns:1fr 420px; gap:60px; align-items:center; }
.hero-badge-el { display:inline-block; background:rgba(212,160,23,0.15); border:1px solid rgba(212,160,23,0.4); color:var(--gold); font-size:11px; padding:5px 18px; border-radius:20px; letter-spacing:2px; margin-bottom:22px; }
.hero-title { font-size:clamp(36px,5vw,58px); color:#fff; line-height:1.15; margin-bottom:20px; }
.hero-title span { color:var(--gold); }
.hero-sub { color:#8a9a8a; font-size:16px; line-height:1.8; margin-bottom:36px; font-weight:300; }
.hero-ctas { display:flex; gap:16px; flex-wrap:wrap; }
.hero-card { background:rgba(255,255,255,0.05); border:1px solid rgba(212,160,23,0.18); border-radius:16px; padding:28px; backdrop-filter:blur(10px); }
.hero-card-title { color:var(--gold); font-size:11px; letter-spacing:2px; margin-bottom:18px; }
.tech-stack { display:flex; flex-wrap:wrap; gap:10px; }
.tech-tag { background:rgba(27,67,50,0.6); border:1px solid rgba(27,67,50,0.8); color:#9aefa0; padding:6px 14px; border-radius:6px; font-size:12px; font-weight:500; display:flex; align-items:center; gap:6px; }
.tech-tag i { color:var(--gold); font-size:14px; }
.hero-avail { margin-top:22px; padding-top:18px; border-top:1px solid rgba(212,160,23,0.15); display:flex; align-items:center; gap:10px; }
.avail-dot { width:10px; height:10px; background:#4caf50; border-radius:50%; box-shadow:0 0 0 3px rgba(76,175,80,0.3); animation:pulse 2s infinite; }
.avail-text { color:#8a9a8a; font-size:13px; }
.avail-text strong { color:#4caf50; }

/* ── Process Steps ── */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step; }
.process-step { text-align:center; padding:32px 20px; background:#fff; border-radius:12px; border:1px solid rgba(0,0,0,.07); position:relative; }
.process-num { width:48px; height:48px; background:var(--dark); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; color:var(--gold); font-family:'Playfair Display',serif; font-size:20px; font-weight:600; }
.process-title { font-size:16px; font-weight:600; margin-bottom:10px; }
.process-desc  { font-size:13px; color:var(--text-muted); line-height:1.7; }

/* ── Footer ── */
.footer { background:var(--dark); color:#8a9a8a; padding:60px 24px 28px; }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr; gap:40px; margin-bottom:44px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand-name { color:var(--gold); font-family:'Playfair Display',serif; font-size:18px; }
.footer-brand-desc { font-size:13px; line-height:1.85; color:#6a7a6a; }
.footer-heading { color:#ccc; font-size:11px; font-weight:600; margin-bottom:16px; letter-spacing:1.5px; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:#6a7a6a; font-size:13px; transition:color .2s; display:flex; align-items:center; gap:6px; }
.footer-links a:hover { color:var(--gold); }
.footer-social { display:flex; gap:10px; margin-top:20px; }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,0.05); border-radius:8px; display:flex; align-items:center; justify-content:center; color:#6a7a6a; font-size:18px; transition:all .2s; }
.footer-social a:hover { background:rgba(212,160,23,0.15); color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12px; color:#4a5a4a; }

/* ── Animations ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px);} to{opacity:1;transform:translateY(0);} }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(76,175,80,.3);} 50%{box-shadow:0 0 0 7px rgba(76,175,80,.1);} }

/* ── Responsive ── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-card  { display:none; }
  .services-grid, .projects-grid { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; }
  .why-grid   { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .navbar-links, .navbar-actions .btn-hire { display:none; }
  .navbar-mobile-toggle { display:block; }
  .hero-section { padding:60px 20px; }
  .stats-inner  { grid-template-columns:repeat(2,1fr); }
  .services-grid, .projects-grid, .testimonials-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
  .form-row     { grid-template-columns:1fr; }
  .gallery-masonry { columns:2; }
  .section { padding:52px 16px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .why-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr; }
  .slider-arrow { display:none; }
  .cta-btns { flex-direction:column; align-items:center; }
}
@media (max-width:480px) {
  .gallery-masonry { columns:1; }
}

/* ══ Scroll Reveal Animation ══════════════════════
   .reveal  = hidden initial state (CSS, not JS)
   .revealed = visible final state
   No inline styles needed — pure CSS classes
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid children */
.services-grid     .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid     .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid     .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid     .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid     .reveal:nth-child(6) { transition-delay: 0.40s; }
.projects-grid     .reveal:nth-child(2) { transition-delay: 0.10s; }
.projects-grid     .reveal:nth-child(3) { transition-delay: 0.20s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.20s; }
.why-grid          .reveal:nth-child(2) { transition-delay: 0.08s; }
.why-grid          .reveal:nth-child(3) { transition-delay: 0.16s; }
.why-grid          .reveal:nth-child(4) { transition-delay: 0.24s; }

/* Safety: if JS is disabled or observer not supported, show everything */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
