/* =============================================
   CIVIL SCOPE SOLUTIONS — styles.css
   Bold & Industrial: Dark Navy + Steel Grey
   ============================================= */

:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2044;
  --navy-lite: #162d5e;
  --steel:     #8a9ab5;
  --steel-lite:#c4cfe0;
  --accent:    #f0a500;
  --accent2:   #e8f4fd;
  --white:     #ffffff;
  --off-white: #f4f6fa;
  --text:      #1a2a40;
  --text-muted:#5a6e88;
  --border:    rgba(138,154,181,0.2);
  --card-bg:   #111e35;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 8px 40px rgba(10,22,40,0.18);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.28);
}

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

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

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

/* ---- SECTION TYPOGRAPHY ---- */
.section-tag {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-lead { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }
.section-header.center .section-tag::before { display: none; }
.section-header.center .section-lead { margin: 0 auto; }
.section-header.center .section-title::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: var(--transition);
}
.btn-primary:hover { background: #ffc233; transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(10,22,40,0.4);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-sub {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--steel);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-lite);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta {
  padding: 0.5rem 1.3rem;
  background: var(--accent);
  color: var(--navy);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 100%, 7px 100%);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: #ffc233; color: var(--navy); }

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

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.97) 0%,
    rgba(15,32,68,0.88) 50%,
    rgba(10,22,40,0.75) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,165,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,165,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 100px;
  padding-bottom: 160px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line-2 {
  color: var(--accent);
  display: block;
}
.hero-title .line-1,
.hero-title .line-3 { display: block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--steel-lite);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--steel);
  text-transform: uppercase;
}
.scroll-line {
  width: 60px; height: 1px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scrollSlide 2s infinite;
}
@keyframes scrollSlide {
  to { left: 200%; }
}

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(15,32,68,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hstat {
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hstat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.hstat-unit {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}
.hstat-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--steel);
  text-transform: uppercase;
}
.hstat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0.5rem 0;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.9);
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  top: 30px; left: -20px;
  background: var(--accent);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.about-copy .section-title { margin-top: 0.5rem; }
.about-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-values {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-values li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.about-values li i { color: var(--accent); font-size: 0.9rem; }

/* =============================================
   SERVICES
   ============================================= */
.services { position: relative; background: var(--off-white); }
.services-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.services .container { position: relative; z-index: 1; }
.services .section-tag { color: var(--accent); }
.services .section-title { color: var(--white); }
.services .section-lead { color: var(--steel-lite); }
.services .section-header.center .section-title::after { margin-top: 0.75rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  border: 1.5px solid var(--border);
}
.service-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  background: #0d1f3d;
  border-color: rgba(240,165,0,0.25);
  transform: translateY(-4px);
  z-index: 1;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, #162d5e 0%, #0f2044 100%);
  border-color: rgba(240,165,0,0.3);
}
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(240,165,0,0.08);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--navy); }
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-link {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.8rem; }

/* =============================================
   STATS BAND
   ============================================= */
.stats-band {
  background: var(--accent);
  padding: 3rem 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  vertical-align: top;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--navy-mid);
  text-transform: uppercase;
  font-weight: 700;
}

/* =============================================
   PROJECTS
   ============================================= */
.projects { background: var(--white); }
.projects-filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}
.filter-btn {
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--border);
  background: none;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-card.large { grid-column: span 2; }
.project-img { position: relative; overflow: hidden; }
.project-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.75);
}
.project-card.large .project-img img { height: 280px; }
.project-card:hover .project-img img { transform: scale(1.07); filter: brightness(0.5); }
.project-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  transition: var(--transition);
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.4) 100%); }
.proj-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.project-overlay h4 {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.project-overlay p {
  font-size: 0.85rem;
  color: var(--steel-lite);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.project-card:hover .project-overlay p { max-height: 100px; opacity: 1; }

/* =============================================
   TEAM
   ============================================= */
.team { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
  position: relative;
  height: 220px;
  background: var(--navy-mid);
  overflow: hidden;
}
.team-card.founder .team-img { height: 280px; }
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--steel);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.team-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.team-info { padding: 1.5rem; }
.team-role {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}
.team-info h3 {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.team-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.team-socials { display: flex; gap: 0.75rem; }
.team-socials a {
  width: 32px; height: 32px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-size: 0.8rem;
  transition: var(--transition);
}
.team-socials a:hover { background: var(--accent); color: var(--navy); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  position: relative;
  background: var(--white);
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-tag { color: var(--accent); justify-content: center; }
.testimonials .section-tag::before { display: none; }
.testimonials .section-title { color: var(--white); text-align: center; }
.testimonials .section-title::after { margin: 0.75rem auto 0; }
.testimonials-track {
  max-width: 780px;
  margin: 3rem auto 0;
  position: relative;
  min-height: 260px;
}
.tcard {
  display: none;
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-left: 4px solid var(--accent);
  animation: fadeIn 0.5s ease;
}
.tcard.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tcard-quote { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.tcard p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tcard-avatar {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--accent);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tcard-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.tcontrols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.tctrl {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.tctrl:hover { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.tdots { display: flex; gap: 0.5rem; }
.tdot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.tdot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* =============================================
   PARTNERS
   ============================================= */
.partners { background: var(--off-white); padding: 80px 0; }
.partners-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  min-width: 110px;
}
.partner-logo:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.partner-logo i { font-size: 1.8rem; color: var(--navy-lite); }
.partner-logo span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.partner-logo:hover i { color: var(--accent); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--navy); }
.contact .section-tag { color: var(--accent); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.contact-info p {
  color: var(--steel-lite);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.cdetail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cdetail-icon {
  width: 40px; height: 40px;
  background: rgba(240,165,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.cdetail strong { display: block; color: var(--white); font-family: var(--font-cond); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.1rem; }
.cdetail span { color: var(--steel); font-size: 0.92rem; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group.full { margin-bottom: 1.5rem; }
.form-group label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.btn-primary.full-w { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; clip-path: none; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(15,32,68,0.06);
  color: var(--navy);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  gap: 0.5rem;
  align-items: center;
}
.form-success i { color: green; }
.form-success.show { display: flex; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p {
  color: var(--steel);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: var(--navy); border-color: var(--accent); }
.footer-links h4 {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--steel);
  transition: var(--transition);
}
.footer-links ul li i { color: var(--accent); font-size: 0.8rem; width: 14px; }
.footer-links ul li a { color: var(--steel); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--steel);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.large { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hstat { padding: 1.2rem 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge-float { display: none; }
  .hero-stats { position: relative; flex-wrap: wrap; justify-content: center; }
  .hstat-divider { display: none; }
  .hstat { padding: 1rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .stats-row { justify-content: center; gap: 1.5rem; }
  .tcard { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .partners-row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}