:root {
  --navy: #111111;
  --navy-mid: #222222;
  --navy-light: #444444;
  --gold: #111111;
  --gold-dark: #000000;
  --gold-light: #555555;
  --white: #ffffff;
  --grey-light: #e0e0e0;
  --grey-mid: #888888;
  --text: #111111;
  --font: 'Manrope', sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* â”€â”€ UTILITIES â”€â”€ */
.container { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::after { content: ''; display: block; height: 1px; width: 40px; background: var(--gold); }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-family: 'Manrope', sans-serif;
}

/* Typography system */
h1, h2, h3, h4, h5, h6,
.hero-h1, .section-title, .usp-title, .service-title,
.project-title, .team-name, .number-value,
.nav-logo-name, .testimonial-name,
.contact-info-title, .footer-col h4,
.about-years-badge .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

p, li, span, a, input, textarea, select, blockquote,
.usp-text, .service-desc, .service-bullets li,
.project-desc, .project-meta, .project-detail-row,
.team-bio, .footer-brand-tagline, .footer-copyright,
.hero-sub, .contact-banner-text p, .services-intro p,
.about-story p, .number-label, .testimonial-quote,
.testimonial-company, .client-logo, .cert-badge,
.footer-legal a, .footer-col ul a {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}
.section-title.light { color: var(--white); }

/* Section labels on dark backgrounds */
#services .section-label,
#numbers .section-label,
#contact-banner .section-label {
  color: #ffffff;
}
#services .section-label::after,
#numbers .section-label::after,
#contact-banner .section-label::after {
  background: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-gold {
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #111111;
}
.btn-gold:hover { background: #111111; color: #ffffff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* â”€â”€ FADE-IN ANIMATIONS â”€â”€ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#header {
  background: var(--white);
}
#header.scrolled {
  background: var(--white);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.05em;
}
.nav-logo-img { height: 40px; width: auto; display: block; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(0,0,0,0.65);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { left: 0.85rem; right: 0.85rem; }
.nav-cta { margin-left: 1rem; }

/* â”€â”€ DROPDOWNS â”€â”€ */
.nav-item { position: relative; }
.nav-item > a .nav-arrow {
  font-size: 0.55rem;
  margin-left: 0.25rem;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-item:hover > a .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  min-width: 280px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 50px rgba(0,0,0,0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex !important;
  align-items: center;
  padding: 0.95rem 1.5rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--navy-light) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--grey-light);
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: #f8fafc; color: var(--navy) !important; padding-left: 1.85rem !important; }
.nav-dropdown a i { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: var(--transition);
}
.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); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: #ffffff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.35) 100%);
}
.hero-slider-dots {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-dot {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  height: 36px;
}
/* Architectural grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
#hero .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 5rem;
  padding-bottom: 4rem;
  text-align: left;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 50px; height: 2px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: wheat;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 11rem 0 5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: #fff; }
.page-hero .section-label::after { background: #fff; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero .breadcrumbs { margin-top: 1rem; }
.page-hero .breadcrumbs, .page-hero .breadcrumbs a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.page-hero .breadcrumbs a:hover { color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   USPS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#usps {
  padding: 7rem 0;
  background: var(--white);
}
.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grey-light);
}
.usp-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--grey-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.usp-card:last-child { border-right: none; }
.usp-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.usp-card:hover::before { transform: scaleX(1); }
.usp-icon {
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
}
.usp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.usp-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--grey-mid);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KEY NUMBERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#numbers {
  padding: 8rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.number-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.number-item:last-child { border-right: none; }
.number-value {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.number-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROJECTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#projects {
  padding: 9rem 0;
  background: #f5f5f5;
}
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.filter-tabs {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--grey-light);
  background: var(--white);
  color: var(--grey-mid);
  border-radius: var(--radius);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--navy); color: var(--navy); }
.filter-tab.active { border-color: var(--gold); background: var(--gold); color: var(--white); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy-mid);
  display: block;
  text-decoration: none;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.project-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-hover-overlay { opacity: 1; }
.project-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}
.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.project-meta {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.project-details {
  color: var(--white);
}
.project-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold);
}
.project-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
}
.project-detail-row:last-of-type { border-bottom: none; }
.project-detail-row span:first-child { color: rgba(255,255,255,0.5); }
.project-detail-row span:last-child { font-weight: 600; text-align: right; }
.project-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.project-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.project-see-more i { transition: transform var(--transition); }
.project-see-more:hover i { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#testimonial {
  padding: 9rem 0;
  background: var(--white);
}
.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.testimonial-quote-block {
  position: relative;
}
.testimonial-quote-mark {
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute;
  top: -1rem; left: -1rem;
  pointer-events: none;
}
.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.testimonial-company { font-size: 0.78rem; color: var(--grey-mid); }

.clients-block h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.client-logo {
  aspect-ratio: 2/1;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  background: #f8fafc;
  transition: var(--transition);
  overflow: hidden;
  padding: 1.5rem;
}
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: var(--transition); }
.client-logo:hover { border-color: var(--gold); color: var(--navy); }
.client-logo:hover img { filter: none; opacity: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#contact-banner {
  padding: 7rem 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#contact-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.contact-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 450px;
  line-height: 1.6;
}
.contact-banner-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.btn-phone i { color: var(--gold); }
.btn-phone:hover { color: #ffffff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#services {
  padding: 9rem 0;
  background: var(--navy);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.services-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-top: 1.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.service-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--navy-mid); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.25rem;
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: #ffffff; color: #111111; }
.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-bullets {
  list-style: none;
  margin-bottom: 1rem;
}
.service-bullets li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.service-bullets li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.service-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#about {
  padding: 9rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.about-story p {
  font-size: 1rem;
  line-height: 1.85;
  color: #475569;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.certifications {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.cert-badge {
  padding: 1rem 0.75rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy-light);
  background: #f8fafc;
  transition: var(--transition);
}
.cert-badge:hover { border-color: var(--gold); color: var(--navy); }
.cert-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.about-image-block {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-years-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  width: 120px; height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.about-years-badge .num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about-years-badge .label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.team-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 1rem;
  border: 3px solid var(--grey-light);
  transition: border-color var(--transition);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card:hover .team-avatar { border-color: var(--gold); }
.team-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.team-role { font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-bottom: 0.4rem; }
.team-bio { font-size: 0.75rem; color: var(--grey-mid); line-height: 1.5; }

.about-bottom-banner {
  margin-top: 4rem;
  background: var(--navy);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.about-bottom-banner p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  max-width: 500px;
}
.about-bottom-banner p em { color: var(--gold); font-style: normal; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT FORM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#contact {
  padding: 9rem 0;
  background: #f5f5f5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}
.contact-info-list { list-style: none; }
.contact-info-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--grey-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-info-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.3rem;
}
.contact-info-detail span, .contact-info-detail a {
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-detail a:hover { color: #111111; text-decoration: underline; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

/* Contact Form 7 styling to match the original markup */
.contact-form .form-row,
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label,
.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--navy);
  background: #f8fafc;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea,
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-submit,
.contact-form input[type="submit"] {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 1rem;
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #111111;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.contact-form input[type="submit"]:hover { background: #111111; color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#footer {
  background: #000000;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col h4 { color: #fff; }
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
}
.footer-social:hover { border-color: #ffffff; color: #ffffff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEWS / BLOG
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.news-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-date {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  opacity: 0.92;
}
.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  text-wrap: pretty;
}
.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.75;
  flex: 1;
}
.news-card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.news-card-link:hover { gap: 0.7rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIAL SLIDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#testimonial { overflow: hidden; }
.tslider-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-bottom: 3.5rem;
}
.tslider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.tslider-slide {
  min-width: 100%;
  padding: 0 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.tslider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none; cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.tslider-dot.active {
  background: #111111;
  transform: scale(1.3);
}
.tslider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: none;
  border: 1.5px solid var(--grey-light);
  color: var(--navy);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.tslider-arrow:hover { background: #111111; border-color: #111111; color: #fff; }
.tslider-prev { left: 0; }
.tslider-next { right: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}
.faq-item:first-child {
  border-top: 1px solid var(--grey-light);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-q:hover { color: #111111; font-weight: 800; }
.faq-item.faq-open .faq-q { color: #111111; font-weight: 800; }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-dark);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-item.faq-open .faq-icon {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
  transform: rotate(45deg);
}
.faq-a {
  padding-bottom: 1.4rem;
}
.faq-a p {
  color: var(--grey-mid);
  line-height: 1.8;
  font-size: 0.93rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SINGLE / ENTRY CONTENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: #475569;
}
.entry-content h2 { font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1.25rem 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
.entry-content a { color: var(--navy); }
.section-pad { padding: 5rem 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

.single-meta-box {
  background: #f5f5f5;
  border-radius: var(--radius);
  padding: 1.75rem;
}
.single-meta-box .project-detail-row span:first-child { color: var(--grey-mid); }
.single-meta-box .project-detail-row { border-color: var(--grey-light); }
.single-meta-box .project-detail-row span:last-child { color: var(--navy); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .usps-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-card:nth-child(2) { border-right: none; }
  .usp-card:nth-child(1), .usp-card:nth-child(2) { border-bottom: 1px solid var(--grey-light); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(1), .number-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .certifications { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-slider-dots { bottom: 1.5rem; right: 1rem; }

  #usps, #testimonial { padding: 3rem 0; }
  #numbers, #projects, #services, #about, #contact { padding: 3.5rem 0; }
  #clients { padding: 2.5rem 0 !important; }

  .usps-grid { grid-template-columns: 1fr; }
  .usp-card { border-right: none; border-bottom: 1px solid var(--grey-light); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-top { grid-template-columns: 1fr; }
  .certifications { grid-template-columns: repeat(2, 1fr); }

  .contact-banner-inner { flex-direction: column; text-align: center; }
  .contact-banner-ctas { flex-direction: column; align-items: center; width: 100%; }
  .contact-banner-ctas .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .contact-grid { gap: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-block { display: none; }
  .about-story p { font-size: 0.9rem; }

  .services-intro { grid-template-columns: 1fr; gap: 1rem; }

  .filter-tabs { display: none; }
  .filter-select { display: block !important; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer-legal { justify-content: center; }
  .footer-socials { justify-content: flex-start; }

  .number-item { padding: 2rem 1rem; }
  .number-value { font-size: 2.2rem; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }

  .testimonial-quote { font-size: 1rem; }
  .page-hero { padding: 8rem 0 3rem; }
}

@media (max-width: 640px) {
  .tslider-slide { padding: 0 0.5rem; }
  .tslider-arrow { display: none; }
}

.filter-select {
  display: none;
  padding: 0.6rem 1rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f172a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* Project hidden state */
.project-card.hidden { display: none; }

/* Floating buttons + modal */
@keyframes modalIn {
  from { opacity:0; transform:translateY(20px) scale(0.97); }
  to   { opacity:1; transform:none; }
}
#backToTop:hover { background:#ffffff !important; color:#111111 !important; }
#floatContactBtn:hover { background:#ffffff; color:#111111; transform:translateY(-2px); }
