/* ===== Variables ===== */
:root {
  --olive: #6b7b45;
  --olive-dark: #5c6b3a;
  --cream: #faf7f0;
  --cream-2: #f4f0e6;
  --ink: #2b2a26;
  --ink-soft: #5f5d55;
  --border: #e6e1d3;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(43, 42, 38, 0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--olive);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  color: var(--ink);
}

.section-title.center {
  text-align: center;
  margin-bottom: 44px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--olive);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(107, 123, 69, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--olive-dark);
}
.btn-white:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  min-width: 0;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--olive-dark); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--olive);
}

/* ===== Nav Dropdown (Services) ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  min-width: 220px;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}
.nav-dropdown-menu a {
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--cream-2);
  color: var(--olive-dark);
}
.nav-dropdown-viewall {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px !important;
  font-weight: 600;
  color: var(--olive-dark) !important;
}

@media (min-width: 1181px) {
  .nav-dropdown:hover .nav-dropdown-menu { display: flex; }
  .nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-link svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { padding: 70px 0 60px; background: var(--white); }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-text h1 .accent { color: var(--olive); }
.hero-text > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-badges li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-badges svg { width: 26px; height: 26px; color: var(--olive); }

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== About ===== */
.about { padding: 80px 0; background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.25;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 480px;
}

/* ===== Quality Work ===== */
.quality-work {
  position: relative;
  padding: 90px 0;
  background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.quality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(20,20,18,0.92) 0%, rgba(20,20,18,0.86) 45%, rgba(20,20,18,0.7) 100%);
}
.quality-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}
.eyebrow-light {
  color: var(--olive-light, #c9d4a8);
  position: relative;
  padding-bottom: 12px;
}
.eyebrow-light::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background: var(--olive-light, #c9d4a8);
}
.quality-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 6px 0 28px;
  color: var(--white);
}
.quality-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.quality-tab {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.quality-tab:hover { border-color: var(--white); }
.quality-tab.active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.quality-checklist { display: flex; flex-direction: column; gap: 18px; }
.quality-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.quality-checklist strong { color: var(--white); }
.quality-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light, #c9d4a8);
  color: var(--olive-light, #c9d4a8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.quality-check svg { width: 13px; height: 13px; }

.quality-right { display: flex; flex-direction: column; gap: 28px; }
.quality-feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 28px;
}
.quality-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--olive-light, #c9d4a8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-light, #c9d4a8);
}
.quality-feature-icon svg { width: 24px; height: 24px; }
.quality-feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.quality-feature p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}
.quality-divider { height: 1px; background: rgba(255,255,255,0.22); }

/* ===== Services ===== */
.services { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--olive);
}
.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--olive);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* ===== How It Works ===== */
.how-it-works { padding: 80px 0; background: var(--cream); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 170px;
}
.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive);
  margin-bottom: 16px;
  background: var(--white);
}
.step-icon svg { width: 26px; height: 26px; }
.step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.8rem; color: var(--ink-soft); }
.step-arrow {
  color: var(--olive);
  font-size: 1.3rem;
  margin-top: 22px;
}

/* ===== Projects ===== */
.projects { padding: 80px 0; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.project-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-item:hover img { transform: scale(1.08); }
.center-btn { text-align: center; }

/* ===== Why Choose Us ===== */
.why { padding: 80px 0; background: var(--cream); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.25;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== Our Partners ===== */
.partners { padding: 80px 0 90px; text-align: center; overflow: hidden; }
.center-block { display: block; text-align: center; }
.center-sub {
  text-align: center;
  max-width: 620px;
  margin: -28px auto 40px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.partners-marquee {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partner-logo {
  flex-shrink: 0;
  width: 210px;
  height: 130px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(43, 42, 38, 0.14);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== Our Stats ===== */
.stats-section {
  padding: 80px 0;
  background-color: #2b2a26;
  background-image:
    linear-gradient(rgba(30,29,26,0.78), rgba(30,29,26,0.78)),
    url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stats-title { color: var(--white); }
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-section .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-section .stat svg {
  width: 34px;
  height: 34px;
  color: var(--olive);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-plus {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive);
  margin-top: 6px;
}
.stats-section .stat p {
  font-size: 0.85rem;
  color: #d8d5cc;
  margin-top: 10px;
}

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--cream); }
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 190px;
}
.testimonial {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.testimonial.active { display: block; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--olive);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.testimonial p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 24px;
}
.client { display: flex; align-items: center; justify-content: center; gap: 12px; }
.client img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.client div { text-align: left; }
.client strong { display: block; font-size: 0.9rem; }
.client span { font-size: 0.78rem; color: var(--ink-soft); }

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.dots span.active { background: var(--olive); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA Banner ===== */
.cta-banner { background: var(--olive); padding: 46px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.cta-icon svg { width: 26px; height: 26px; }
.cta-text { flex: 1; color: var(--white); }
.cta-text h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.cta-text p { font-size: 0.9rem; opacity: 0.9; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question span {
  color: var(--olive);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 90%;
}

/* ===== Footer ===== */
.site-footer { background: var(--cream-2); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 0.8fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--olive-dark); }
.brand-col p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 260px;
}
.footer-logo { margin-bottom: 4px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  margin-bottom: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.social-links a svg {
  width: 17px;
  height: 17px;
}
.social-links a:hover { background: var(--olive); color: var(--white); border-color: var(--olive); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--olive-dark); }

/* ===== Page Banner (About / Services inner pages) ===== */
.page-banner {
  padding: 64px 0 54px;
  text-align: center;
  background-color: #2b2a26;
  background-image:
    linear-gradient(rgba(30,29,26,0.82), rgba(30,29,26,0.82)),
    url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #cfcbbf;
}
.breadcrumb a { color: #cfcbbf; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--olive); }

/* ===== Mission & Values (About page) ===== */
.values { padding: 80px 0; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--olive);
}
.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--olive);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ===== Team (About page) ===== */
.team { padding: 80px 0; background: var(--cream); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 2px; }
.team-card span { font-size: 0.8rem; color: var(--olive); font-weight: 500; }

/* ===== Service Detail (Services page) ===== */
.service-detail { padding: 80px 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-detail-card {
  display: flex;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background: var(--white);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--olive);
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-icon svg { width: 28px; height: 28px; }
.service-detail-body h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.service-detail-body p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 12px; }
.service-detail-body ul { display: flex; flex-direction: column; gap: 6px; }
.service-detail-body ul li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-detail-body ul li::before {
  content: '✓';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--olive-dark);
  transition: gap 0.2s ease;
}
.service-detail-readmore:hover { gap: 10px; }

/* ===== Individual Service Page: feature list ===== */
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}
.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-feature-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  padding: 4px;
}

/* ===== Related Services (individual service page) ===== */
.related-services { padding: 70px 0; background: var(--cream); }
.related-services-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.related-service-pill {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}
.related-service-pill:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

/* ===== Why [Service] Stands Out (individual service page) ===== */
.why-stands { padding: 80px 0; background: var(--cream); }
.why-stands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-stands-grid .value-card { background: var(--white); }

/* ===== Process Timeline (individual service page, day-based) ===== */
.process-timeline { padding: 80px 0; }
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.process-step {
  text-align: center;
}
.process-step-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  position: relative;
}
.process-step-img img { width: 100%; height: 100%; object-fit: cover; }
.process-step-day {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.03em;
}
.process-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 0.8rem; color: var(--ink-soft); }

/* ===== Project Filter Bar ===== */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--olive); color: var(--olive-dark); }
.filter-btn.active { background: var(--olive); border-color: var(--olive); color: var(--white); }

.project-item { position: relative; }
.project-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 10px;
  background: linear-gradient(0deg, rgba(20,19,16,0.85), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.project-item:hover .project-caption { opacity: 1; transform: translateY(0); }

/* ===== Contact Page ===== */
.contact-info { padding: 70px 0 0; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--olive);
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--olive);
}
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-card h3 { font-size: 0.96rem; font-weight: 600; margin-bottom: 6px; }
.contact-info-card a, .contact-info-card span { font-size: 0.85rem; color: var(--ink-soft); }
.contact-info-card a:hover { color: var(--olive-dark); }

.contact-main { padding: 80px 0; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: stretch;
}
.contact-form-wrap .section-title { text-align: left; margin-bottom: 10px; }
.contact-lead { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 28px; max-width: 480px; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--olive);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; }

.form-success {
  background: var(--cream-2);
  border: 1.5px solid var(--olive);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ink);
}
.form-success strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.form-success p { color: var(--ink-soft); font-size: 0.9rem; }

.form-error {
  background: #fbeaea;
  border: 1.5px solid #d99a9a;
  color: #9a3b3b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--olive-dark); }

/* ===== Scroll animation ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo { width: 170px; height: 110px; padding: 16px 20px; }
  .stats-section .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-stands-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
}

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .header-actions .phone-link { display: none; }
  .hamburger { display: flex; }
  .header-actions { gap: 12px; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { justify-content: space-between; width: 100%; }
  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    min-width: 0;
    margin-top: 8px;
    border-left: 2px solid var(--border);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

  .hero-inner, .about-inner, .why-inner, .quality-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .about-image { order: -1; }
  .why-image { order: -1; }
}

@media (max-width: 640px) {
  .header-inner { gap: 8px; }
  .logo-text { font-size: 0.76rem; }
  .logo-icon { width: 28px; height: 28px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-primary { padding: 9px 14px; font-size: 0.76rem; }
  .hamburger { padding: 4px; gap: 4px; }
  .hamburger span { width: 20px; }

  .quality-work { padding: 60px 0; }
  .quality-feature { flex-direction: column; padding: 22px; }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .header-inner { gap: 6px; }
  .logo-text { font-size: 0.7rem; }
  .header-actions .btn-primary { padding: 8px 10px; font-size: 0.7rem; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .partner-logo { width: 150px; height: 100px; }
  .stats-section .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .steps { gap: 20px; }
  .step-arrow { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-stands-grid { grid-template-columns: 1fr; }
  .process-timeline-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
