:root {
  --primary: #B8965A;
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
  --bg-light: #F5F0E8;
  --bg-cream: #E8E3D9;
  --text-light: #FFFFFF;
  --text-gray: rgba(255, 255, 255, 0.72);
  --text-dark: #111111;
  --text-dark-gray: #5A5550;

  --font-sans: 'Outfit', sans-serif;

  --padding-x: clamp(20px, 8vw, 120px);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Utilities */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.container-fluid {
  max-width: 1440px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.italic-serif {
  font-family: 'Arial', sans-serif;
  font-style: italic;
  color: #D4B483;
}

.section-tag {
  color: var(--primary);
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--primary);
  transform: rotate(-60deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: #a3824b;
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #1a1a1a;
}

.btn-outline {
  background: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 100;
  background: #111111;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-img {
  height: 105px;
  /* Increased logo size */
  object-fit: contain;
  margin-bottom: 4px;
}

.logo-tag {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #F7F4EF;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 11.2px;
  font-weight: 500;
  letter-spacing: 1.57px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  color: var(--primary);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 10.9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.52px;
  transition: all 0.3s;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 850px;
  /* Matched reference exactly */
  display: flex;
  align-items: center;
  background-color: var(--bg-darker);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 52%, rgba(8, 8, 8, 0.18) 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
  /* Accounts for absolute header to not push down content, but shifts it visually */
}

.hero-content {
  max-width: 820px;
}

.hero-title {
  font-family: 'Arial', sans-serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #F7F4EF;
  font-weight: 400;
  margin-bottom: 16px;
}

.hero-subtitle::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.hero-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 28px;
  margin-bottom: 40px;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  right: var(--padding-x);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: #E8E3D9;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Outfit', sans-serif;
  font-size: 9.6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.11px;
  color: var(--text-light);
}

/* Statistics */
.stats {
  background: #1A1A1A;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 120px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 0 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
  cursor: default;
}

.stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item:nth-child(2) {
  transition-delay: 150ms;
}

.stat-item:nth-child(3) {
  transition-delay: 300ms;
}

.stat-item:nth-child(4) {
  transition-delay: 450ms;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Arial', sans-serif;
  font-size: 64px;
  font-weight: 400;
  color: #FFFFFF;
  display: flex;
  /* align-items: baseline; */
  margin-bottom: 12px;
  line-height: 1;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: #f0f0f0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.stat-suffix {
  color: #B8965A;
  font-size: 28px;
  font-weight: 400;
  margin-left: 2px;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-suffix {
  color: #d4b06e;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* About Section */
.about {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img-wrapper {
  position: relative;
  background: #E8E3D9;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.ai-badge {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.ai-badge-title {
  font-size: 52px;
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.ai-badge-title span {
  color: var(--primary);
  font-size: 24px;
  margin-left: 4px;
}

.ai-badge-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 10.4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.25px;
  color: #9A9490;
}

.about-content {
  padding: 72px var(--padding-x) 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: 38.4px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-text {
  font-family: 'Outfit', sans-serif;
  color: #5A5550;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 16px;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}

.feature-item {
  border-top: 1px solid #E8E3D9;
  padding-top: 16px;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.09px;
  margin-bottom: 5px;
}

.feature-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 14.7px;
  font-weight: 300;
  color: #5A5550;
  line-height: 28px;
}

/* Systems Section */
.systems {
  padding: 112px 0;
  background: var(--text-light);
  color: var(--text-dark);
}

.systems-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.systems-title {
  font-size: 38.4px;
}

.all-systems-link {
  font-family: 'Outfit', sans-serif;
  color: #5A5550;
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E8E3D9;
}

.system-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111111;
  display: block;
  text-decoration: none;
}

.system-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  z-index: 1;
}

.system-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%);
  z-index: 2;
  transition: background-color 0.4s ease;
}

.system-card:hover .system-card-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.system-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  padding-top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.system-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4B483;
  margin-bottom: 8px;
}

.system-name {
  font-family: 'Arial', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

.system-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.explore-link {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D4B483;
  margin-top: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

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

.system-card:hover .system-desc {
  opacity: 1;
  max-height: 150px;
  margin-top: 16px;
}

.system-card:hover .explore-link {
  opacity: 1;
  max-height: 30px;
  margin-top: 24px;
}

/* Process */
.process {
  padding: 100px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(255, 255, 255, .055) 0px,
      rgba(255, 255, 255, .055) 1px,
      transparent 1px,
      transparent 24px);
  pointer-events: none;
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-header {
  margin-bottom: 80px;
  max-width: 700px;
}

.process-title {
  font-family: 'Arial', sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.process-desc {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, .75);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(184, 150, 90, .4);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  transition: all .4s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-step:hover .step-title {
  color: #B8965A;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #050505;
  border: 1px solid #B8965A;
  color: #B8965A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 12px;
  transition: color .4s ease;
}

.step-badge {
  display: inline-block;
  background: rgb(78 78 78 / 75%);
  /* border: 1px solid rgba(184, 150, 90, .3); */
  color: #B8965A;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.step-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 2;
}

/* Gallery */
.gallery {
  padding: 112px 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.gallery-title {
  font-size: 38.4px;
}

.gallery-filters {
  display: flex;
  gap: 24px;
  align-items: center;
}

.filter-btn {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 10.9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.09px;
  color: #5A5550;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--text-light);
  background: var(--text-dark);
  padding: 8px 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.gallery-item {
  aspect-ratio: 6/3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-action {
  text-align: center;
}

/* Partners */
.partners {
  padding: 112px 0;
  background: var(--text-light);
  color: var(--text-dark);
  text-align: center;
}

.partners-title {
  font-size: 38.4px;
  line-height: 42.24px;
  margin-bottom: 24px;
}

.partners-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #5A5550;
  max-width: 600px;
  margin: 0 auto 64px;
  font-size: 16px;
  line-height: 28px;
}

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

.partner-card {
  /* border: 1px solid rgba(0, 0, 0, .08); */
  border-right: 1px solid rgba(0, 0, 0, .08);
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  transition: all .4s ease;
}

.partner-card:hover {
  background: #f5f0e885;
  /* transform: translateY(-8px); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.partner-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.partner-country {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #B8965A;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 14px;
  border: 1px solid #B8965A;
  /* border-top: none;
  border-right: none; */
  display: inline-block;
}

.partner-logo {
  height: 38px;
  object-fit: contain;
  opacity: .7;
  transition: all .4s ease;
}

.partner-card:hover .partner-logo {
  opacity: 1;
  transform: scale(1.05);
}

.partner-name {
  display: none;
}

.partner-card-header h3 {
  transition: color .4s ease;
}

.partner-card:hover .partner-card-header h3 {
  color: #B8965A !important;
}

.partner-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #5A5550;
  font-size: 14.7px;
  line-height: 27.97px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.partner-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 9.9px;
  text-transform: uppercase;
  letter-spacing: 0.99px;
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: letter-spacing .4s ease;
}

.partner-link span {
  display: inline-block;
  transition: transform .4s ease;
}

.partner-link:hover {
  letter-spacing: 2px;
}

.partner-link:hover span {
  transform: translateX(6px);
}

/* Testimonials */
.testimonials {
  padding: 112px 0;
  background: var(--bg-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  font-size: 38.4px;
  display: flex;
  justify-content: center;
  gap: 8px;
  line-height: 42.24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-mark {
  color: var(--primary);
  font-size: 88px;
  font-family: 'Cormorant', 'Playfair Display', serif;
  line-height: 70.4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: 'Arial', sans-serif;
  font-style: italic;
  font-size: 18px;
  line-height: 33.6px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
}

.author-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-light);
  line-height: 22.53px;
}

.author-info p {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #9A9490;
  font-size: 15.2px;
  line-height: 28.12px;
}

/* Clients */
.clients {
  padding: 60px 0;
  background: #F5F0E8;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: #9A9490;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll-carousel 35s linear infinite;
  will-change: transform;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

.clients-group {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.clients-group img {
  height: 40px;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.clients-group img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--bg-dark);
}

.contact-info {
  padding: 120px var(--padding-x);
  background-image: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)), url('img/Home/about.png');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: 'Arial', sans-serif;
  font-size: 40px;
  line-height: 44px;
  margin-bottom: 24px;
}

.contact-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 48px;
}

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

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

.contact-icon {
  width: 36px;
  height: 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(184, 150, 90, .4);
  color: #B8965A;

  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.contact-icon::before {
  margin: 0;

  display: block;
  top: 7px !important;
  left: 5px !important;
}

.fa-phone::before,
.fa-envelope::before,
.fa-location-dot::before {
  position: relative;
  top: 1px;
}

.contact-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 4px;
}

.contact-note {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 0;
  margin-top: auto;
  /* Pushes to bottom if flex container has space */
}

.contact-form {
  padding: 120px var(--padding-x) 120px 80px;
  background: #fff;
  color: var(--text-dark);
}

.contact-form h3 {
  font-size: 25.6px;
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-label span {
  color: var(--primary);
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #F5F0E8;
  border: 1px solid #E4DDD1;
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

textarea.form-input {
  resize: vertical;
  height: 100px;
  min-height: 100px;
  padding: 16px;
}

.submit-btn {
  width: 100%;
  height: 54px;
  background: #111111;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #B8965A;
  color: #111111;
}

/* Footer */
.footer {
  background: #050505;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.footer {
  background: #050505;
  padding: 80px 0 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 80px;
}

.footer-logo {
  width: 140px;
  display: block;
  margin-bottom: 18px;
}

.footer-tagline {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
}

/* 
.footer-desc {
  color: rgba(255, 255, 255, .65);
  line-height: 2;
  font-size: 16px;
  max-width: 320px;
  font-family: Outfit, sans-serif;
} */

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.social-link:hover {
  background: #B8965A;
  border-color: #B8965A;
  color: #111;
}

.footer-title {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: Outfit, sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: .3s;
  font-family: Outfit, sans-serif;
}

.footer-links a:hover {
  color: #B8965A;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  font-family: Outfit, sans-serif;
}

.footer-contact-item i {
  color: #B8965A;
  font-size: 15px;
  margin-top: 6px;
  min-width: 16px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-legal a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 14px;
  font-family: Outfit, sans-serif;
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a:hover {
  color: #B8965A;
}

.footer-brand {
  padding-right: 50px;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }


}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 35% 20% 20% 25%;
  gap: 0;
  padding-bottom: 0;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #B8965A;
  color: #000;
  border-color: #B8965A;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #B8965A;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

.contact-icon {
  color: #B8965A;
  width: 26px;
  flex-shrink: 0;
  display: inline-flex;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #B8965A;
}

/* Responsive */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

@media (max-width: 992px) {

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

  .about-img {
    min-height: 400px;
  }

  .about-content,
  .contact-form {
    padding: 80px var(--padding-x);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .process-line {
    display: none;
  }

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

@media (max-width: 768px) {

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-title {
    font-size: 38px;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

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

  .stat-item {
    border-right: none;
  }

  .systems-grid,
  .gallery-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}