/* ============================================
   DESIGNTECH INTERIORS — Component Styles
   ============================================ */

/* ---- Trusted By ---- */
.trusted-by {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}

.trusted-logo {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: capitalize;
  transition: color 0.2s;
}

.trusted-logo:hover {
  color: var(--black);
}

@media (max-width: 768px) {
  .trusted-logos { gap: 20px 28px; }
  .trusted-logo { font-size: 0.75rem; }
}

/* ---- Founders Grid ---- */
.founders-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  flex: 0 0 200px;
  max-width: 200px;
}

.founder-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-gray);
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.founder-card:hover .founder-img {
  border-color: var(--brass);
  transform: scale(1.05);
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}

.founder-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.founder-card.text-only {
  justify-content: center;
  min-height: 180px;
}

.team-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
}

.form-success {
  color: #2a7a4b;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.founder-card.text-only .founder-name {
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  .founders-grid { gap: 24px; }
  .founder-card { flex: 0 0 140px; max-width: 140px; }
  .founder-img { width: 110px; height: 110px; }
  .founder-card.text-only { min-height: 140px; }
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease-out);
  cursor: default;
}

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

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg line,
.service-card:hover .service-icon svg polyline { stroke: var(--beige); }

.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.5); }
.service-card:hover .service-arrow { color: var(--brass); }

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon svg path,
.service-icon svg rect,
.service-icon svg circle,
.service-icon svg line,
.service-icon svg polyline {
  stroke: var(--brass);
  transition: stroke 0.3s;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  transition: color 0.3s;
  flex: 1;
}

.service-arrow {
  font-size: 1.2rem;
  color: var(--light-gray);
  transition: color 0.3s;
  margin-top: 8px;
}

/* ---- Featured Projects ---- */
.projects-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.proj-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.proj-tile:nth-child(1) { grid-row: 1 / 3; }
.proj-tile:nth-child(2) { grid-row: 1; }
.proj-tile:nth-child(3) { grid-row: 2; }

.proj-tile-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}

.proj-tile:nth-child(1) .proj-tile-img { min-height: 640px; }

.proj-tile:hover .proj-tile-img { transform: scale(1.04); }

.proj-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,7,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.proj-tile:hover .proj-tile-overlay { opacity: 1; }

.proj-tile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.proj-tile:hover .proj-tile-info {
  transform: translateY(0);
  opacity: 1;
}

.proj-tile-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 6px;
}

.proj-tile-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
}

/* ---- Why Us ---- */
.why-us-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.why-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.why-us-img:hover img { transform: scale(1.04); }

.why-us-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--beige);
  z-index: -1;
  pointer-events: none;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.why-feature-text h4 {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ---- Process Section ---- */
.process-section {
  background: var(--black);
  padding: 100px 0;
}

.process-section .section-label { color: var(--beige); }
.process-section h2 { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,62,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--brass);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
  margin-bottom: 24px;
}

.process-step:hover .process-step-num {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--white);
}

.process-step-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars span {
  color: var(--brass);
  font-size: 0.85rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.testimonial-author .name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.04em;
}

.testimonial-author .role {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-banner-content h2 {
  color: var(--white);
  max-width: 700px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.cta-banner-content p {
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  font-size: 0.9rem;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---- Footer ---- */
.site-footer {
  background: #111110;
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col .address {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-style: normal;
}

.footer-col .address strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
}

.footer-social-link:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ---- Project Page Grid ---- */
.projects-filter {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--light-gray);
  color: var(--gray);
  background: transparent;
  transition: all 0.25s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.project-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.project-card.hidden {
  display: none;
}

.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-gray);
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.project-card-body {
  padding: 24px 28px 28px;
}

.project-card-tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}

.project-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
}

.project-card-meta {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 6px;
}

/* ---- Services Page ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.service-block-img:hover img { transform: scale(1.04); }

.service-block-content { padding: 20px 0; }

.service-block-content .section-label { display: block; }

.service-block-content p {
  margin: 16px 0 32px;
  max-width: 480px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.service-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info p { margin: 16px 0 40px; max-width: 400px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}

.contact-detail-text h5 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-detail-text p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--black);
  line-height: 1.6;
}

.contact-form-wrap {
  background: #f4f2ee;
  padding: 48px;
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.contact-form-wrap .sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-out);
  margin-top: 8px;
}
.form-submit:hover { background: var(--brass); }

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/6;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 80px;
  font-family: var(--font-body);
}

/* ---- About Page ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-us-text {
  max-width: 780px;
  margin: 0 auto;
}

.about-us-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
}

.about-us-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 16px;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  aspect-ratio: 4/5;
  overflow: hidden;
}

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

.about-img-inset {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--white);
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light-gray);
}

.team-card {
  background: var(--white);
  overflow: hidden;
}

.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light-gray);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-info {
  padding: 20px 24px 24px;
}

.team-card-info h4 {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.team-card-info span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

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

.value-item { display: flex; flex-direction: column; gap: 12px; }

.value-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--light-gray);
  line-height: 1;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.value-item p { font-size: 0.83rem; }

/* ---- Furniture Carousel ---- */
.furniture-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  background: var(--white);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

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

@media (min-width: 768px) {
  .carousel-slide { flex: 0 0 50%; }
}

@media (min-width: 1100px) {
  .carousel-slide { flex: 0 0 33.333%; }
}

/* ---- Service Block Inline Carousel ---- */
.service-carousel-wrap {
  overflow: hidden;
}

.service-carousel-wrap .furniture-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.service-carousel-wrap .carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
}

.service-carousel-wrap .carousel-slide {
  padding: 0;
  flex: 0 0 100%;
}

.service-carousel-wrap .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-carousel-wrap .carousel-btn {
  opacity: 1;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Responsive (components) ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1 / -1; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .why-us-split { grid-template-columns: 1fr; gap: 48px; }
  .projects-editorial { grid-template-columns: 1fr; }
  .projects-editorial .proj-tile:nth-child(1) { grid-row: auto; }
  .proj-tile .proj-tile-overlay { opacity: 1; }
  .proj-tile .proj-tile-info { opacity: 1; transform: none; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-inset { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
