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

:root {
  --orange: #C8922A;
  --orange-dark: #B07D1E;
  --green: #25D366;
  --dark: #1a1a2e;
  --dark2: #222240;
  --dark3: #2c2c4a;
  --gray: #5a6170;
  --light: #f4f5f7;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); overflow-x: hidden; font-size: 16px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; cursor: pointer; border: none; transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,146,42,0.25); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.25); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  cursor: pointer; border: 2px solid var(--dark); color: var(--dark);
  background: transparent; transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.full-width { width: 100%; justify-content: center; }
.wa-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark); padding: 8px 20px;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
}
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-inner i { color: var(--orange); }
.topbar-rera { color: var(--orange) !important; font-weight: 700; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-tag {
  display: inline-block;
  background: rgba(200,146,42,0.1); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--dark); margin-bottom: 14px;
}
.section-desc { color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.8; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; transition: all 0.3s ease;
  background: rgba(13,13,13,0.85); backdrop-filter: blur(10px);
}
.navbar.scrolled {
  background: var(--dark); padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange) 0%, #D4A84B 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(200,146,42,0.25);
  position: relative;
}
.logo-icon::after {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.logo-main {
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
  color: var(--white); letter-spacing: 3px;
}
.logo-sub {
  font-family: var(--font-head); font-weight: 600; font-size: 0.6rem;
  color: rgba(255,255,255,0.75); letter-spacing: 2px; text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-head); font-weight: 500; font-size: 0.54rem;
  color: var(--orange); letter-spacing: 1px; font-style: italic;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: rgba(255,255,255,0.85); letter-spacing: 0.5px; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-wa { padding: 9px 18px; font-size: 0.78rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; transition: all 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-color: #0d0d0d;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 20px 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.75));
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,146,42,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-logo { margin-bottom: 16px; display: flex; justify-content: center; }
.hero-logo img {
  width: 200px; height: 200px; object-fit: contain;
  border-radius: 50%; background: rgba(255,255,255,0.05);
  border: 2px solid rgba(200,146,42,0.25); padding: 6px;
  box-shadow: 0 0 30px rgba(200,146,42,0.15), 0 0 60px rgba(200,146,42,0.06);
}
.hero-content { text-align: center; max-width: 600px; z-index: 1; width: 100%; }
.hero-tag {
  display: inline-block; color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 16px;
}
.hero-content h1 span { color: var(--orange); font-size: 0.75em; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8;
  margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-trust {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 700;
  color: rgba(255,255,255,0.5); letter-spacing: 0.8px;
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }
.hero-trust i { color: var(--orange); }
.hero-stats {
  display: flex; gap: 28px; margin-top: 44px; z-index: 1;
  flex-wrap: wrap; justify-content: center; width: 100%;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; color: var(--orange); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; }

/* ===== TAGLINE STRIP ===== */
.tagline-strip {
  background: var(--orange); padding: 18px 0; text-align: center;
}
.tagline-strip p {
  font-family: var(--font-head); font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 700; color: var(--white); letter-spacing: 0.5px; margin: 0;
}

/* ===== FIRM INTRO ===== */
.firm-intro { padding: 80px 0; background: var(--light); }
.firm-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.firm-intro-content .section-tag { display: inline-block; }
.firm-intro-content h2 {
  font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; margin: 12px 0 18px; line-height: 1.2; color: var(--dark);
}
.firm-intro-content p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.firm-intro-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.firm-intro-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border-radius: 12px; padding: 18px 16px;
  border: 1px solid #ddd; transition: all 0.3s;
}
.highlight-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateX(4px); }
.highlight-card > i {
  width: 44px; height: 44px; min-width: 44px; background: rgba(200,146,42,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
}
.highlight-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.highlight-card p { color: var(--gray); font-size: 0.86rem; line-height: 1.6; margin: 0; }

/* ===== FOUNDER ===== */
.founder { padding: 80px 0; background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: center; }
.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 16px;
  border: 3px solid rgba(200,146,42,0.15);
}
.founder-name-badge {
  position: absolute; bottom: -20px; left: 20px;
  background: var(--dark); padding: 14px 22px; border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.founder-name-badge h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 2px;
}
.founder-name-badge span {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  color: var(--orange); letter-spacing: 1px; text-transform: uppercase;
}
.founder-content .section-tag { display: inline-block; }
.founder-content h2 {
  font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900; margin: 12px 0 20px; line-height: 1.2; color: var(--dark);
}
.founder-quote {
  font-family: var(--font-body); font-size: 1rem; font-style: italic;
  color: var(--dark); line-height: 1.8; margin: 0 0 20px;
  padding: 20px 24px; background: var(--light); border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
}
.founder-content p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.founder-values {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.founder-values span {
  display: flex; align-items: center; gap: 8px;
  background: var(--light); border: 1px solid #ddd; border-radius: 8px;
  padding: 10px 16px; font-family: var(--font-head); font-weight: 600;
  font-size: 0.84rem; color: var(--dark);
}
.founder-values span i { color: var(--orange); }

/* ===== OUR CLIENTS ===== */
.clients { padding: 80px 0 60px; background: var(--light); overflow: hidden; }
.clients-marquee {
  position: relative; width: 100%; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-track {
  display: flex; gap: 32px; width: max-content;
  animation: marquee 25s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  background: var(--white); border: 1px solid #e0e0e0; border-radius: 12px;
  padding: 18px 32px; display: flex; align-items: center; justify-content: center;
  height: 110px; min-width: 180px; flex-shrink: 0; transition: all 0.3s;
}
.client-logo:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.client-logo img {
  max-height: 75px; max-width: 160px; object-fit: contain;
}

/* ===== SERVICES ===== */
.services { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 12px; padding: 32px 24px;
  position: relative; border: 1px solid #ddd; transition: all 0.3s ease; min-width: 0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.service-card.featured { background: var(--dark); border-color: var(--orange); box-shadow: 0 6px 24px rgba(200,146,42,0.12); }
.service-card.featured h3, .service-card.featured p, .service-card.featured li { color: var(--white) !important; }
.service-badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--orange); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 1px; padding: 4px 12px; border-radius: 20px;
}
.service-icon {
  width: 56px; height: 56px; background: rgba(200,146,42,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--orange); margin-bottom: 18px;
}
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--gray); line-height: 1.7; margin-bottom: 16px; font-size: 0.92rem; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--gray); }
.service-card li i { color: var(--orange); font-size: 0.7rem; flex-shrink: 0; }
.services-category-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 900; font-size: 0.95rem;
  color: var(--dark); margin-bottom: 24px; margin-top: 48px;
  padding-bottom: 12px; border-bottom: 2px solid var(--orange);
  flex-wrap: wrap;
}
.services-category-label:first-of-type { margin-top: 0; }
.services-category-label i { color: var(--orange); font-size: 1rem; }
.services-category-label.manpower { border-color: #25D366; }
.services-category-label.manpower i { color: #25D366; }

/* ===== ABOUT ===== */
.about { padding: 80px 0; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-box { position: relative; margin-bottom: 20px; }
.about-img { width: 100%; height: 340px; object-fit: cover; border-radius: 16px; display: block; border: 2px solid rgba(200,146,42,0.15); }
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--orange); color: white; border-radius: 12px;
  padding: 16px 20px; text-align: center; box-shadow: 0 6px 18px rgba(200,146,42,0.25);
}
.badge-num { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; }
.badge-text { font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; }
.about-certifications { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.cert-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: 8px; padding: 9px 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem;
  color: var(--dark); border: 1px solid #ddd;
}
.cert-item i { color: var(--orange); }
.about-content .section-tag { display: inline-block; }
.about-content h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; margin: 12px 0 6px; line-height: 1.2; }
.tagline-shine {
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  font-size: 0.85rem; color: var(--orange); letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 24px; }
.feature { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; }
.feature i { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; }

/* ===== PROJECTS ===== */
.projects { padding: 80px 0; background: var(--white); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.project-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; border: 1px solid #ddd; min-width: 0; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.project-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; color: rgba(255,255,255,0.3); overflow: hidden; background: var(--dark); }
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-info { padding: 20px; }
.project-tag {
  display: inline-block; background: rgba(200,146,42,0.1); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-bottom: 8px;
}
.project-tag.ongoing { background: rgba(37,211,102,0.12); color: #25D366; }
.project-live-badge {
  display: inline-flex; align-items: center;
  background: #25D366; color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 1px; padding: 3px 10px; border-radius: 20px;
  animation: pulse-live 1.8s infinite;
}
@keyframes pulse-live { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.project-info h4 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.project-info p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* ===== SITE GALLERY SLIDER ===== */
.site-gallery { padding: 80px 0 60px; background: var(--light); overflow: hidden; }
.site-slider-wrap {
  position: relative; max-width: 900px; margin: 0 auto;
  padding: 0 50px; overflow: hidden;
}
.site-slider {
  display: flex; border-radius: 14px;
  transition: transform 0.5s ease;
}
.site-slide {
  min-width: 100%; flex-shrink: 0;
}
.site-slide img {
  width: 100%; height: 480px; object-fit: cover; display: block;
  border-radius: 14px;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark); cursor: pointer;
  transition: all 0.3s; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slider-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { background: var(--orange); transform: scale(1.2); }

@media (max-width: 768px) {
  .site-slide img { height: 280px; }
  .site-slider-wrap { padding: 0 40px; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.85rem; }
}

/* ===== HOW WE WORK ===== */
.process { padding: 80px 0; background: var(--light); }
.process-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 140px; max-width: 200px;
  text-align: center; padding: 0 10px;
}
.step-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
  color: rgba(200,146,42,0.1); line-height: 1; margin-bottom: -10px;
}
.step-icon {
  width: 60px; height: 60px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; margin: 0 auto 14px;
  box-shadow: 0 5px 16px rgba(200,146,42,0.25);
}
.process-step h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: 0.86rem; line-height: 1.7; }
.process-arrow { color: var(--orange); font-size: 1.1rem; padding-top: 48px; flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery { padding: 80px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden; position: relative; cursor: pointer;
  transition: transform 0.3s; aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: unset; grid-row: span 2; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  gap: 6px; padding: 16px; opacity: 0; transition: opacity 0.3s; color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.2rem; color: var(--orange); }
.gallery-overlay span { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: 12px; padding: 28px 24px;
  border: 1px solid #e0e0e0; transition: all 0.3s; min-width: 0;
}
.testimonial-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); transform: translateY(-4px); }
.stars { color: #f59e0b; margin-bottom: 14px; font-size: 0.88rem; display: flex; gap: 4px; }
.testimonial-card > p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; min-width: 42px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 0.95rem;
}
.testimonial-author h5 { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.testimonial-author span { color: var(--gray); font-size: 0.76rem; }

/* ===== CAREERS ===== */
.careers { padding: 0 0 80px; background: var(--white); }
.careers-banner {
  background: var(--dark); padding: 60px 0 48px; text-align: center; margin-bottom: 48px;
}
.careers-banner .section-tag { display: inline-block; margin-bottom: 12px; }
.careers-banner h2 {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--white); margin-bottom: 12px;
}
.careers-banner p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.careers-content { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.careers-openings h3, .careers-form-wrap h3 {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.careers-openings h3 i, .careers-form-wrap h3 i { color: var(--orange); }
.careers-grid { display: flex; flex-direction: column; gap: 14px; }
.career-card {
  background: var(--light); border-radius: 12px; padding: 20px;
  border: 1px solid #ddd; transition: all 0.3s;
}
.career-card:hover { border-color: var(--orange); box-shadow: 0 8px 24px rgba(200,146,42,0.08); }
.career-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.career-icon {
  width: 44px; height: 44px; min-width: 44px; background: rgba(200,146,42,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
}
.career-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.career-card p { color: var(--gray); font-size: 0.82rem; line-height: 1.6; margin: 0; }
.career-tag {
  display: inline-block; background: rgba(200,146,42,0.1); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.64rem;
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 20px;
}
.careers-perks {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.careers-perks span {
  display: flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid #ddd; border-radius: 8px;
  padding: 8px 14px; font-family: var(--font-head); font-weight: 600;
  font-size: 0.76rem; color: var(--dark);
}
.careers-perks span i { color: var(--orange); font-size: 0.8rem; }
.careers-form-wrap {
  background: var(--light); border-radius: 16px; padding: 32px 28px;
  border: 1px solid #ddd; position: sticky; top: 100px;
}
.careers-form-desc { color: var(--gray); font-size: 0.85rem; margin: -10px 0 20px; }
.resume-divider {
  text-align: center; margin: 20px 0; position: relative;
}
.resume-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: #ddd;
}
.resume-divider span {
  background: var(--light); padding: 0 14px; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  color: var(--gray); letter-spacing: 1px;
}
.resume-drop { text-align: center; }
.resume-drop p {
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  color: var(--dark); margin-bottom: 12px; display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.resume-drop p i { color: var(--orange); }
.resume-drop .btn { font-size: 0.78rem; }
.resume-hint {
  display: block; margin-top: 8px; font-size: 0.72rem; color: var(--gray);
}

/* ===== WHY US ===== */
.why-us { padding: 80px 0; background: var(--dark); }
.why-us .section-tag { background: rgba(200,146,42,0.15); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s; min-width: 0;
}
.why-card:hover { background: rgba(200,146,42,0.08); border-color: rgba(200,146,42,0.3); transform: translateY(-4px); }
.why-card i { font-size: 1.7rem; color: var(--orange); margin-bottom: 12px; display: block; }
.why-card h4 { font-family: var(--font-head); font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 0.92rem; }
.why-card p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item i {
  width: 44px; height: 44px; min-width: 44px; background: rgba(200,146,42,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.95rem;
}
.contact-item .fab.fa-whatsapp { color: var(--green); }
.contact-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.contact-item p, .contact-item a { color: var(--gray); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #ccc; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); }
.contact-form textarea { resize: vertical; }

/* ===== MAP ===== */
.map-section { padding: 80px 0 0; background: var(--light); }
.map-wrapper { margin-top: 32px; }
.map-wrapper iframe { display: block; width: 100%; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.86rem; line-height: 1.7; max-width: 280px; margin-bottom: 14px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,146,42,0.1); color: var(--orange);
  font-family: var(--font-head); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 1px; padding: 5px 10px; border-radius: 20px;
}
.footer h4 { font-family: var(--font-head); font-weight: 700; color: var(--white); margin-bottom: 16px; font-size: 0.9rem; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-services li { color: rgba(255,255,255,0.45); font-size: 0.86rem; }
.footer-contact p { color: rgba(255,255,255,0.45); font-size: 0.86rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--orange); width: 16px; flex-shrink: 0; }
.footer-contact .fa-whatsapp { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.8rem;
}

/* ===== WHATSAPP CHAT WIDGET ===== */
.wa-widget { position: fixed; bottom: 24px; right: 20px; z-index: 999; }
.wa-float-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: white; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s; animation: pulse-wa 2.5s infinite;
}
.wa-float-btn:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8); }
}
.wa-popup {
  position: absolute; bottom: 72px; right: 0;
  width: 320px; background: var(--white); border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  overflow: hidden; transform: scale(0.8) translateY(20px);
  opacity: 0; pointer-events: none;
  transition: all 0.3s ease; transform-origin: bottom right;
}
.wa-popup.active {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}
.wa-popup-header {
  background: #075E54; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.wa-popup-title { display: flex; align-items: center; gap: 12px; color: white; }
.wa-popup-title i { font-size: 1.4rem; }
.wa-popup-title h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; }
.wa-popup-title span { font-size: 0.68rem; opacity: 0.7; }
.wa-popup-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1rem; cursor: pointer; padding: 4px;
}
.wa-popup-close:hover { color: white; }
.wa-popup-body { padding: 18px; }
.wa-greeting {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: var(--dark); margin-bottom: 16px; line-height: 1.5;
}
.wa-options { display: flex; flex-direction: column; gap: 8px; }
.wa-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  background: var(--light); border: 1px solid #e8e8e8;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  color: var(--dark); transition: all 0.2s; cursor: pointer;
}
.wa-option:hover { background: rgba(37,211,102,0.1); border-color: #25D366; color: #075E54; }
.wa-option i { color: #25D366; font-size: 0.85rem; width: 18px; text-align: center; }

/* ===== RESPONSIVE — TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { gap: 18px; }
}

/* ===== RESPONSIVE — TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-img { height: 320px; }
  .careers-content { grid-template-columns: 1fr; gap: 36px; }
  .careers-form-wrap { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -12px; right: -8px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .firm-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-arrow { display: none; }
  .process-steps { gap: 28px; }
  .process-step { min-width: 130px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ===== RESPONSIVE — MOBILE (max 768px) ===== */
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { padding: 12px 0; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--dark);
    padding: 20px; gap: 18px; border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-wa { display: none; }

  .hero { padding: 90px 16px 48px; }
  .hero-logo img { width: 150px; height: 150px; }
  .hero-stats { gap: 16px; margin-top: 28px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.68rem; }

  .firm-intro, .services, .about, .projects, .process,
  .gallery, .testimonials, .why-us, .contact, .map-section { padding: 56px 0; }

  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.45rem; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE — SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
  .hero { padding: 80px 14px 40px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 8px; }
  .hero-stats { gap: 12px; }
  .stat-num { font-size: 1.4rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }

  .logo-main { font-size: 0.95rem; letter-spacing: 2px; }
  .logo-sub { font-size: 0.52rem; }
  .logo-tagline { font-size: 0.48rem; }
  .logo-icon { width: 36px; height: 36px; font-size: 1rem; }

  .services-category-label { font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .firm-intro-btns { flex-direction: column; }
  .firm-intro-btns .btn, .firm-intro-btns .btn-outline-dark { width: 100%; justify-content: center; }
}
