/* ============================================
   STYLES.CSS — Page-specific styles
   SMART BUILD INVESTMENT Landing Page
   ============================================ */

/* ============================================
   LAYOUT HELPERS
   ============================================ */

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.header.is-scrolled {
  background-color: rgba(30, 34, 44, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}



.hero-section {
  position: relative;
  width: 100%;
  min-height: 43.875rem; /* 702px */
  background-image: var(--smart-hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 156px;
  padding-bottom: 220px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(30, 34, 44, 0.061);
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section__title {
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.1;
  max-width: 828px;
  color: var(--color-text-light);
  letter-spacing: -0.01em;
}

/* Navigation */
.nav {
  width: 100%;
  padding-top: 1rem; /* 16px — Frame 46 padding [16, 0] */
  padding-bottom: 1rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1301;
}

.nav__logo img {
  width: clamp(160px, 15vw, 248px);
  height: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu > li {
  list-style: none;
}

.nav__link {
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.022em; /* -0.3125px / 14px */
  line-height: 1.71;
  transition: opacity var(--transition-base);
  white-space: nowrap;
}

.nav__link:hover {
  opacity: 0.75;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.nav__phone {
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.67vw, 1.5rem); /* 24px at 1440px */
  font-weight: 400;
  white-space: nowrap;
  letter-spacing: -0.006em; /* -0.15px / 24px */
  transition: opacity var(--transition-base);
}

.nav__phone:hover {
  opacity: 0.8;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-bg-light);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  flex-shrink: 0;
}

.btn-call:hover {
  background-color: var(--color-primary);
  transform: scale(1.05);
}

.btn-call svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.375rem;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  z-index: 1301;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background-color: var(--color-text-light);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__hamburger.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); width: 100%;}
.nav__hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg);
width: 100%; }

/* Hero Content */
.hero-content {
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-stats {
  width: 100%;
  background-color: var(--color-bg-light);
  padding: 3.625rem 0; /* 58px top/bottom */
}

.hero-stats__inner {
  display: flex;
  align-items: flex-end; /* alignItems: "end" */
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-stats__text {
  width: clamp(260px, 48.9vw, 39.1875rem); /* ~627px at 1280px container */
  flex-shrink: 0;
}

.hero-stats__title {
  color: #101828;
  font-family: var(--font-secondary);
  font-size: clamp(1.25rem, 2.34vw, 1.875rem); /* 30px */
  font-weight: 500;
  letter-spacing: -0.015em; /* -0.449px / 30px */
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-stats__title--sm {
  font-size: clamp(1.2rem, 2.26vw, 1.8125rem); /* 29px */
}

.hero-stats__title-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(0px, 7.64vw, 6.875rem); /* 110px at 1440px */
  margin-top: 0.125rem;
}

.hero-stats__arrow {
  flex-shrink: 0;
  color: #101828;
}

.hero-stats__description {
  color: #101828;
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.56vw, 1.25rem); /* 20px */
  font-weight: 500;
  letter-spacing: -0.022em; /* -0.449px / 20px */
  line-height: 1.5;
  width: clamp(240px, 40.6vw, 32.5rem); /* ~520px at 1280px container */
  flex-shrink: 0;
}

/* Full-width image section (between stats and services) */
.section-full-img {
  width: 100%;
  overflow: hidden;
}

.section-full-img img {
  width: 100%;
  height: 45.8125rem; /* 733px */
  object-fit: cover;
  display: block;
}

/* ============================================
   SERVICES SECTION (Dark Background)
   ============================================ */
.services-section {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-dark);
  background-image: var(--smart-services-bg, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: var(--section-py) 0;
}



.services-section > * {
  position: relative;
  z-index: 1;
}

.section-label {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.011em; /* -0.150390625px / 14px */
  line-height: 1.43;
  text-align: center;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.section-label--dark {
  color: var(--color-text-dark);
}

.services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem; /* 24px — Section Info gap from section-label */
  margin-bottom: 3rem;
  width: 100%;
}

.services-heading__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.625rem); /* 58px */
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.006em; /* 0.35px / 58px */
  line-height: 1.1;
  text-align: center;
}
.services-heading__title-top{
	width: 100%;text-align: left;
}

.services-heading__row .services-heading__title {
  text-align: left;
  white-space: nowrap;
  flex-shrink: 0;
}

.services-heading__subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(0.875rem, 1.25vw, 1.125rem); /* 18px */
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.56;
  letter-spacing: -0.024em; /* -0.44px / 18px */
  flex: 1;
  min-width: 200px;
  text-align: left;
	text-transform: uppercase;
}

.services-heading__row {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* 24px — Frame 73 */
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

.services-grid--top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.services-grid--bottom {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card {
  position: relative;
  height: clamp(380px, 30.35vw, 24.28rem); /* 388.5px at 1280px container */
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background var(--transition-base);
}

.service-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.1) 100%);
}

.service-card__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.875vw, 1.5rem); /* 24px */
  font-weight: 500;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  transition: transform var(--transition-base);
}

.service-card__description {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 1;
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: clamp(0.9375rem, 1.2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.011em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(0.625rem);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.service-card:hover .service-card__description {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-card__title {
  transform: translateY(-0.125rem);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
  background-color: var(--color-bg-light);
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  overflow: visible;
}

.why-header {
  display: flex;
  flex-direction: column;
  gap: 0.8125rem; /* 13px — Frame 68 gap between label and heading */
  text-align: center;
  padding: 0 clamp(0rem, 8.5vw, 6.8125rem); /* [0, 109px] inner padding */
  margin-bottom: 3.625rem; /* 58px gap to image */
}

.why-heading {
  display: flex;
gap: 1rem;
}
.why-header .section-label{
	text-align: left;
}
.why-heading__row {
  display: flex;
  align-items: center;
  gap: 2.5rem; /* 40px — Frame 69 gap */
  flex-wrap: wrap;
  margin-bottom: 0;
}

.why-heading__main {
  font-family: var(--font-primary);
  font-size: clamp(2.25rem, 6.09vw, 4.875rem); /* 78px */
  font-weight: 500;
  color: var(--color-text-body);
  letter-spacing: 0.0045em; /* 0.35px / 78px */
  line-height: 1.33;
  flex-shrink: 0;
  white-space: nowrap;
}

.why-heading__desc {
  font-family: var(--font-secondary);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem); /* 18px */
  font-weight: 400;
  color: #4a5565;
	text-transform: uppercase;
	text-align: left;
  line-height: 1.56;
  letter-spacing: -0.024em; /* -0.44px / 18px */
  flex: 1;
  min-width: 200px;
}

.why-heading__sub {
  font-family: var(--font-primary);
  font-size: clamp(2.25rem, 6.09vw, 4.875rem); /* 78px */
  font-weight: 500;
  color: var(--color-text-body);
  letter-spacing: 0.0045em; /* 0.35px / 78px */
  line-height: 1.33;
  text-align: right;
  width: 100%;
}

/* Full-width image wrapper with overlapping cards */
.why-image-wrap {
  position: relative;
  width: 100%;
}

.why-cards-overlay {

  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
padding: 100px 0;
}

.why-cards-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--why-image-height);
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.why-cards-overlay > * {
  position: relative;
  z-index: 1;

}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(3.5px);
  border: 0.5px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.why-card__title {
  font-family: var(--font-secondary);
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
  color: #343841;
  letter-spacing: -0.022em; /* -0.45px / 20px */
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: center;
}

.why-card__text {
  font-family: var(--font-secondary);
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: #343841;
  letter-spacing: -0.011em; /* -0.15px / 14px */
  line-height: 1.625;
  text-align: center;
}

/* ============================================
   ADDITIONAL SERVICES SECTION
   ============================================ */
.additional-services {
  background-color: var(--color-bg-dark);
  background-image: var(--smart-additional-bg, none);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}



.additional-services > * {
  position: relative;
  z-index: 1;
}

.additional-services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3rem; /* 48px gap between header and list */
  flex-wrap: wrap;
}

.additional-services__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5.4vw, 4.875rem); /* 78px */
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.001em; /* 0.07px / 78px */
  line-height: 1.1;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
  align-items: flex-start;
  width: 100%;
}

.service-item {
  background-color: var(--color-bg-light);
  border-radius: 0.875rem; /* 14px */
  padding: 1rem 1.5rem; /* [16, 24] */
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;

  cursor: pointer;
	transition: all 0.3s ease 0s;
}

.service-item:hover {
  box-shadow: var(--shadow-hover);
	transform: translateY(-5px);
}

/* Width hierarchy matching design: 954px, 628px, fill */
.service-item--lg { max-width: 59.625rem; /* 954/16 */ }
.service-item--md { max-width: 39.25rem; /* 628/16 */ }
.service-item--sm { max-width: 100%; }

.service-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.service-item__name {
  font-family: var(--font-mono);
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.024em; /* -0.44px / 18px */
  line-height: 1.56;
}

.service-item__desc {
  font-family: var(--font-mono);
  font-size: var(--fs-sm); /* 14px */
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: -0.011em; /* -0.15px / 14px */
  line-height: 1.43;
}

.service-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-primary);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item__icon svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
  background-color: var(--color-bg-light);
  padding: var(--section-py) 0;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem; /* 40px — Frame 50 gap */
}

/* Projects Layout */
.projects-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px — Frame 63 gap between rows */
  width: 100%;
}

.projects-row-1 {
  display: grid;
  grid-template-columns: 39.25rem 1fr; /* 628px left | fill right */
  gap: 1.5rem;
  align-items: start;
}

.projects-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.projects-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px between badges, heading, subtext */
}

.projects-badges {
  display: flex;

  gap: 1rem;
}

.projects-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border: 0.5px solid var(--color-text-dark);
  border-radius: 0.625rem;
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-text-dark);
}

.projects-badge__dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-text-dark);
  flex-shrink: 0;
}

.projects-heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.84vw, 3.875rem); /* 62px */
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.007em; /* -0.44px / 62px */
  line-height: 1.29;
	text-transform: uppercase;
}

.projects-heading span {
  display: block;
  text-align: right;
}

.projects-subtext {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: -0.028em;
  line-height: 1.5;
  max-width: 25.5rem;
	text-transform: uppercase;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base);
}



.project-card__image-wrap {
  position: relative;
  width: 100%;
  height: clamp(340px, 32.6vw, 26.0625rem); /* 417px */
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--color-border);
  transition: box-shadow var(--transition-base);
  cursor: zoom-in;
}

.project-card:hover .project-card__image-wrap {
  box-shadow: var(--shadow-hover);
}

.project-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 560ms cubic-bezier(0.22, 0.61, 0.36, 1), transform var(--transition-slow);
  will-change: opacity, transform;
}

.project-card__image-wrap img.is-sliding {
  opacity: 0.08;
  transform: scale(1.03);
}

.project-card__image-wrap:hover img {
  transform: scale(1.04);
}

.project-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-bg-light);
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.009em;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.project-card__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-card__index {
  font-family: 'Fustat', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-dark);
  letter-spacing: 0.022em;
}

.project-card__dots {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-card__dot {
  flex: 1;
  height: 1px;
  min-width: 3rem;
  background-color: var(--color-text-dark);
  border-radius: var(--radius-full);
  transition: opacity var(--transition-base);
}

.project-card__dot--inactive {
  background-color: #4f4f4f;
  opacity: 0.3;
}

.project-card__arrows {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.project-card__arrow-btn {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--color-bg-dark)!important;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
}
.next-b{
	width: 82px!important;
}
.next-b svg {
		width: 52px!important;
}
.project-card:hover .project-card__arrow-btn {
  transform: translateY(-0.125rem);
}

.project-card__arrow-btn:hover {
  background-color: var(--color-bg-dark-solid);
}

.project-card__arrow-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  color: white;
}

.project-card__title {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 1.67vw, 1.5rem); /* 24px */
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.019em; /* -0.45px / 24px */
	text-transform: uppercase;
}


/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  background-color: var(--color-bg-dark);
  background-image: var(--smart-reviews-bg, none);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}


.reviews-section > * {
  position: relative;
  z-index: 1;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reviews-heading {
  font-family: var(--font-primary);
  font-size: clamp(2.25rem, 5.625vw, 4.5rem); /* 72px */
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.005em; /* 0.35px / 72px */
  text-align: center;
}

.reviews-shortcode {
  width: 100%;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary);
  padding: 1.5rem 1.594rem; /* [24px, 25.5px] */
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
  padding: 0.625rem; /* 10px all sides */
}

.review-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  background-color: var(--color-border);
  flex-shrink: 0;
}

.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-card__name {
  font-family: var(--font-secondary);
  font-size: 1rem; /* 16px */
  font-weight: 500;
  color: #010101;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.review-card__date {
  font-family: var(--font-secondary);
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
  color: #010101;
  line-height: 1.33;
}

.review-card__stars {
  display: flex;
  gap: 0.25rem;
}

.review-card__star {
  color: var(--color-star);
  font-size: 1rem;
}

.review-card__text {
  font-family: var(--font-secondary);
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: #010101;
  letter-spacing: -0.02em;
  line-height: 1.5;
  flex: 1;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #000000;
  font-family: var(--font-primary);
  font-size: 1rem; /* 16px */
  font-weight: 500;
  letter-spacing: 0.019em;
  line-height: 1.5;
  padding: 0.75rem 1.5rem; /* 12px 24px */
  border-radius: 0.5rem; /* 8px */
  transition: background-color var(--transition-base), transform var(--transition-fast);
  width: 12.0625rem; /* 193px */
  border: none;
  cursor: pointer;
}

.btn-view-more:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background-color: var(--color-bg-light);
  padding: var(--section-py) 0;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem; /* 40px */
  margin-bottom: 4rem; /* 64px — Main Container gap between header and form */
}

.contact-heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.33vw, 3rem); /* 48px at 1440px */
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: 0.0073em; /* 0.35px / 48px */
  text-align: center;
}

.contact-form-wrap {
  width: 100%;
  max-width: 40.4375rem; /* 647px */
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* 32px */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  padding-bottom: 0.5rem;
  position: relative;
}

.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}

.contact-form-wrap .wpcf7 form p {
  margin: 0;
}

.contact-form-wrap .wpcf7 br {
  display: none;
}

.contact-form-wrap .wpcf7 .form-row > p,
.contact-form-wrap .wpcf7 .form-row--single > p {
  margin: 0;
}

.contact-form-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  top: calc(100% + 0.25rem);
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #c62828;
  white-space: normal;
  pointer-events: none;
}

.contact-form-wrap .wpcf7-form-control.wpcf7-not-valid {
  box-shadow: inset 0 -2px 0 0 #c62828;
}

.form-field__label {
  font-family: var(--font-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-dark);
  opacity: 0.7;
  letter-spacing: -0.011em; /* -0.150390625px / 14px */
}

.form-field__input {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.006em; /* -0.150390625px / 24px */
  line-height: 1.25;
  border: none;
  background: none;
  outline: none;
  width: 100%;
}

.form-field__input::placeholder {
  color: #c0c0c0;
}

.form-field--select {
  position: relative;
}

.form-field__input--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 1.75rem;
  cursor: pointer;
}

.form-field--select::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  bottom: 2rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  pointer-events: none;
  color: var(--color-text-dark);
}

.form-field__input--textarea {
  height: 2.75rem;
  min-height: 2.75rem;
  resize: none;
  overflow: hidden;
}

.form-field__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.form-field__select-text {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  color: var(--color-text-dark);
  letter-spacing: -0.006em; /* -0.150390625px / 24px */
}

.form-field__chevron {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-text-dark);
  flex-shrink: 0;
}

.btn-submit,
.contact-form-wrap .wpcf7-form .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ECDC85;
  background-color: #ECDC85;
  color: #000000;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.019em;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  min-width: 12.0625rem;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
  width: fit-content;
  margin: 0 auto;
  align-self: center;
}

.btn-submit:hover,
.contact-form-wrap .wpcf7-form .wpcf7-submit:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   BUTTONS (shared)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.019em;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #000000;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Mobile nav styles are defined in smart-global.css */

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.why-heading__desc-mob{
	display: none;
}
/* ============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .nav__menu {
    display: none;
  }

  .nav__phone {
    font-size: 0.875rem;
  }

  .nav__hamburger {
    display: flex;
  }

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



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

  .projects-row-1 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

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

/* ============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: clamp(3rem, 8vw, 5rem);
  }

  .hero-section {
    background-image: var(--smart-hero-bg-mob, var(--smart-hero-bg, none))!important;
  }

  .hero-stats__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats__description {
    font-size: 0.9375rem;
  }

  .why-heading__row {
    flex-direction: column;
    gap: 1rem;
  }

  .why-heading__desc {
    padding-top: 0;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-cards-overlay {
    --why-image-height: 18rem;
  }


  .projects-row-1,
  .projects-row-2 {
    grid-template-columns: 1fr;
  }

  .service-item--lg,
  .service-item--md {
    max-width: 100%;
  }

  .services-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    border-radius: 0;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid .service-card {
    flex: 0 0 min(84vw, 22rem);
    scroll-snap-align: start;

  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card__description {
    opacity: 1;
    transform: none;
  }

  .additional-services__header {
    flex-direction: column;
    align-items: flex-start;
		margin-bottom: 16px;
  }

  .reviews-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav__actions {
    gap: 0.75rem;
  }

  .hero-stats__title-row {
    padding: 0; /* remove inner padding on mobile */
  }

  .hero-stats__text {
    width: 100%;
  }

  .hero-stats__description {
    width: 100%;
  }

  .why-heading__main,
  .why-heading__sub {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .additional-services__title {
    font-size: clamp(1.75rem, 7vw, 3rem);
		text-align: center;
  }

  .reviews-heading {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }

  .projects-heading {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }
	.services-heading__row {
  flex-direction: column-reverse;
}
.services-heading__row .services-heading__title {

    white-space: wrap;
		text-align: right;

}
.services-heading__title{
	text-align: left;
}
.services-heading__subtitle{
	font-size: 18px;
	text-transform: uppercase;
}
.why-heading__desc{
	display: none;
}
.why-heading__desc-mob{
	display: block!important;
	font-size: 18px;
	text-transform: uppercase;
	text-align: left;
	margin-top: 16px;
}
.why-header{
	gap: 0;
	padding: 0;
}
.why-heading{
	margin-top: 14px;
}
.projects-badge__dot{
	display: none;
}
.projects-badges{
	gap: 4px;
	justify-content: center;
}
.projects-badge{
	font-size: 11px;
	padding: 4px 11px;
	border-radius:4px;
}
.nav__phone{
	display: none!important;
}
.nav__hamburger span:nth-child(1){
	width: 80%;
}
.nav__hamburger span:nth-child(3){
	width: 60%;
}
.nav__hamburger span:nth-child(2){
	width: 100%;
}


.hero-section {
	padding: 260px  0 100px;
}
.hero-section {
	min-height: auto;
}
.hero-stats{
	padding: 42px 0
}
.section-full-img img{
	height: 375px;
}
.why-header .section-label {
    text-align: center;
}
.why-header {

    margin-bottom: 15px;
}
.why-cards-overlay{
	padding: 24px;
}
.additional-services,
.projects-section,
.reviews-section,
.contact-section,
.services-section{
	padding: 96px 0;
}
.services-list {
gap: 16px;
}
}

/* ============================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================ */
@media (max-width: 480px) {
 
  .hero-stats__title {
    font-size: 1.125rem;
  }

 

  .project-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
