/* ============================================================
   DC PREMIER CONSTRUCTION — SHARED STYLES
   ============================================================ */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --dark: #1a1a1a;
  --charcoal: #222222;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #999999;
  --gray-500: #777777;
  --gray-600: #666666;
  --gray-700: #444444;
  --gold: #c9a96e;
  --gold-dark: #b08d4f;
  --font: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

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

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
}

.nav a:hover {
  opacity: 0.7;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn-quote {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-quote:hover {
  background: var(--charcoal);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gray-200);
}

.btn-primary .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary-dark:hover {
  background: var(--charcoal);
}

.btn-primary-dark .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.btn-primary-dark:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline .arrow {
  transition: transform 0.3s;
}

.btn-outline:hover .arrow {
  transform: translateX(4px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--black);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-dark .arrow {
  transition: transform 0.3s;
}

.btn-outline-dark:hover .arrow {
  transform: translateX(4px);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-video:hover {
  opacity: 0.8;
}

.play-circle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle svg {
  margin-left: 2px;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 60px;
  margin-top: 72px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.page-hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

/* ========== SECTION HELPERS ========== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 600px;
}

.section-full {
  padding: 80px 40px;
}

/* ========== HOMEPAGE HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 80px;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.hero-title-light {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-title-bold {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ========== SERVICES CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  border: 1px solid var(--gray-200);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--gray-100);
}

.service-card + .service-card {
  border-left: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 400;
}

/* ========== STATS BAR ========== */
.stats-grid {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stat-item {
  flex: 1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--gray-200);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-item.experience {
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.stat-item.experience .stat-line {
  width: 40px;
  height: 2px;
  background: var(--black);
}

.stat-item.experience .stat-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-item.experience .stat-exp-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
  line-height: 1.3;
}

/* ========== ABOUT PREVIEW (Homepage) ========== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: var(--black);
  z-index: 1;
}

.about-preview-image::after {
  content: '25+';
  position: absolute;
  bottom: 16px;
  left: 14px;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  z-index: 2;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.process-step {
  padding: 40px 28px;
  position: relative;
  border-right: 1px solid var(--gray-200);
}

.process-step:last-child {
  border-right: none;
}

.process-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ========== TESTIMONIALS ========== */
.testimonials-bg {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 64px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
}

/* ========== FEATURED PROJECTS ========== */
.projects-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.projects-header h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.projects-header .dotted-line {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed var(--gray-400);
}

.projects-header a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.projects-header a:hover {
  opacity: 0.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.project-card-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.project-card-overlay span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ========== CTA SECTION ========== */
.cta {
  background: var(--dark);
  color: var(--white);
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.cta-content {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title-light {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255,255,255,0.8);
}

.cta-title-bold {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 380px;
}

.cta-image {
  position: relative;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 28px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-divider {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 40px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

/* ========== CONTACT FORM ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-primary-dark:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  padding: 14px 18px;
  border-left: 3px solid #b00020;
  background: #fdecee;
  color: #b00020;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  animation: form-success-in 0.4s ease-out;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
}

.form-success-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  line-height: 1.1;
}

.form-success-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
  max-width: 440px;
}

@keyframes form-success-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== SERVICES DETAIL (services page) ========== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail.reversed {
  direction: rtl;
}

.service-detail.reversed > * {
  direction: ltr;
}

.service-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s;
}

.service-detail-image:hover img {
  transform: scale(1.03);
}

.service-detail-content .section-label {
  margin-bottom: 8px;
}

.service-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-700);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--black);
}

/* ========== PROJECTS GALLERY ========== */
.filter-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.3s;
}

.filter-tab.active,
.filter-tab:hover {
  color: var(--black);
}

.filter-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/3;
  transition: transform 0.6s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(0);
  opacity: 1;
}

.gallery-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-card-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}

.gallery-card-info .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  margin-top: 8px;
}

/* ========== CONTACT INFO ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ========== TEAM GRID ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
}

.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s;
}

.team-card:hover .team-card-image img {
  filter: grayscale(0%);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========== VALUES GRID ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.value-card {
  padding: 40px 28px;
  border-right: 1px solid var(--gray-200);
}

.value-card:last-child {
  border-right: none;
}

.value-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ========== MAP ========== */
.map-section {
  width: 100%;
  height: 300px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gray-200);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.8s ease both;
}

.hero-title-light { animation-delay: 0.2s; }
.hero-title-bold { animation-delay: 0.35s; }
.hero-tagline { animation-delay: 0.5s; }
.hero-actions { animation-delay: 0.65s; }

.page-hero-content > * {
  animation: fadeUp 0.6s ease both;
}

.page-hero-label { animation-delay: 0.15s; }
.page-hero-title { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-preview,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reversed {
    direction: ltr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(2),
  .process-step:nth-child(2) {
    border-right: none;
  }

  .value-card:nth-child(3),
  .value-card:nth-child(4),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--gray-200);
  }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: block; }

  .header-inner { padding: 0 24px; }

  .hero { padding: 0 24px 60px; }
  .hero-title-bold { font-size: 52px; }

  .section { padding: 60px 24px; }
  .section-full { padding: 60px 24px; }
  .page-hero { padding: 0 24px 48px; height: 320px; }

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

  .service-card + .service-card {
    border-left: 1px solid var(--gray-200);
    border-top: none;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stat-item + .stat-item {
    border-left: none;
    border-top: 1px solid var(--gray-200);
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-image {
    height: 300px;
  }

  .cta-content { padding: 60px 24px; }

  .footer { padding: 28px 24px; }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-divider { display: none; }

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

  .values-grid, .process-grid {
    grid-template-columns: 1fr;
  }

  .value-card, .process-step {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .value-card:last-child, .process-step:last-child {
    border-bottom: none;
  }

  .value-card:nth-child(3), .value-card:nth-child(4),
  .process-step:nth-child(3), .process-step:nth-child(4) {
    border-top: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .filter-tabs {
    overflow-x: auto;
  }
}
