/* ========================================
   PIĄTA KLEPKA - CLEAN CSS STRUCTURE
   ======================================== */

/* ========================================
   BASE STYLES
   ======================================== */
* {
  box-sizing: border-box;
}

html {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  will-change: auto;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-\[90vh\] { height: 90vh; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, .font-geometric {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

strong {
  font-weight: 700;
  color: #16181f;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
}

.slide-1 {
  background-image: url('/img/hero-bg.jpg');
  animation: slideTransition 8s ease-in-out infinite;
  opacity: 1;
}

.slide-2 {
  background-image: url('/img/hero-bg2.jpg');
  animation: slideTransition 8s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes slideTransition {
  0%, 40% {
    opacity: 1;
    transform: scale(1);
  }
  50%, 90% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroTitleSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  z-index: 10;
}

.grid-overlay > div {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.grid-overlay > div:last-child {
  border-right: 1px solid rgba(255,255,255,0.2);
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  padding-bottom: 2rem;
  background: none;
  z-index: 20;
  position: relative;
}

.hero-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  opacity: 0;
  transform: translateY(60px);
  animation: heroTitleSlideUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
  will-change: transform, opacity;
}

.hero-title span {
  font-weight: 300;
  font-size: 2.6rem;
  opacity: 0;
  transform: translateY(40px);
  animation: heroSubtitleSlideUp 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
  will-change: transform, opacity;
}

.hero-title-col {
  grid-column: 2 / span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 0;
}

header {
  display: grid;
  align-items: end;
  height: 90vh;
  position: relative;
  background: transparent;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(22,24,31,0.7);
  z-index: 2;
  pointer-events: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: absolute;
  width: 100%;
  z-index: 30;
  padding: 4rem 0;
}

.navbar-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  height: 4.5rem;
}

.navbar-logo {
  height: 4rem;
  width: auto;
  display: block;
}

.navbar-logo-col {
  grid-column: 2 / span 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
}

.navbar-menu-col {
  grid-column: 4 / span 4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.navbar-menu li a {
  color: #fff;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
  color: #16181f;
  transform: translateY(-1px);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #16181f;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.navbar.dark-nav {
  background-color: #16181f;
  color: #fff;
  position: relative;
  padding: 4rem 0;
}

.navbar.dark-nav .navbar-logo {
  filter: brightness(0) invert(1);
}

.navbar.dark-nav .navbar-menu a {
  color: #fff;
}

.navbar.dark-nav .navbar-menu a:hover {
  color: #B4BAB9;
}

.navbar.dark-nav .navbar-menu a.active {
  color: #fff;
  font-weight: 500;
}

.navbar.dark-nav .hamburger-menu .hamburger-line {
  background-color: #fff;
}

.navbar.dark-nav .hamburger-menu.active .hamburger-line {
  background-color: #fff;
}

/* Override hamburger line color for dark navbar */
.navbar.dark-nav .hamburger-line {
  background-color: #fff;
}

/* Override hamburger line color for homepage (transparent navbar over hero) */
.homepage .hamburger-line {
  background-color: #fff;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 12rem 0;
  background-color: #fff;
  position: relative;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(22,24,31,0.08) 1px, transparent 1px),
    linear-gradient(to right, rgba(22,24,31,0.08) 1px, transparent 1px);
  background-size: 1px 100%, 1px 100%;
  background-position: 14.28% 0, 85.72% 0;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.about-photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

.about-image:hover {
  transform: scale(1.02);
}

.about-text-col {
  display: flex;
  align-items: center;
}

.about-text-content {
  max-width: 500px;
}

.about-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.about-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.about-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #16181f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border: 1px solid #16181f;
  background: transparent;
  transition: all 0.3s ease;
  margin-top: 3rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cta-arrow {
  color: currentColor;
  transition: transform 0.3s ease;
  will-change: transform;
}

.about-cta:hover .cta-arrow,
.projects-button:hover .cta-arrow {
  transform: translateX(4px);
}

.about-cta:hover {
  background: #16181f;
  color: #fff;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
  padding: 12rem 0;
  background-color: #f7f7f9;
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 8rem;
}

.projects-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.projects-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
  max-width: 800px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.projects-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}

.project-item {
  display: flex;
  flex-direction: column;
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 2rem;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  will-change: transform;
}

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

.project-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.project-link:hover {
  transform: translateY(-4px);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(22, 24, 31, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-category {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  background: rgba(22, 24, 31, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.project-info {
  flex: 1;
}

.project-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.project-location {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #B4BAB9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.projects-cta {
  text-align: center;
}

.projects-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #16181f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border: 1px solid #16181f;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.projects-button:hover {
  background: #16181f;
  color: #fff;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 12rem 0;
  background-color: #fff;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 8rem;
}

.services-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.services-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.service-item {
  padding: 4rem 3rem;
  border: none;
  border-radius: 0;
  background: none;
  transition: none;
  will-change: auto;
}

.service-item:hover {
  transform: none;
  box-shadow: none;
}

.service-icon {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-icon-img {
  width: 5.6rem;
  height: 5.6rem;
  transition: none;
  will-change: auto;
}

.service-item:hover .service-icon-img {
  transform: none;
}

.service-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.3;
  margin: 0 0 1.5rem 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.service-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.service-features li {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.service-features li:before {
  content: "•";
  color: #16181f;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Services CTA Button */
.services-cta {
  text-align: center;
  margin-top: 2rem;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #16181f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border: 1px solid #16181f;
  background: transparent;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  will-change: transform;
}

.services-cta-button:hover {
  background: #16181f;
  color: #fff;
}

.services-cta-button .cta-arrow {
  color: currentColor;
  transition: transform 0.3s ease;
  will-change: transform;
}

.services-cta-button:hover .cta-arrow {
  transform: translateX(4px);
}


/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 12rem 0;
  background-color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 6rem;
}

.contact-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #16181f;
  margin: 0 0 2rem 0;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.contact-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.contact-content {
  text-align: center;
}

.contact-email {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #16181f;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
}

.contact-email:hover {
  color: #666;
  border-bottom-color: #16181f;
  transform: translateY(-2px);
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
  padding: 12rem 0;
  background-color: #f7f7f9;
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 8rem;
}

.process-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.process-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Process Accordion */
.process-accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.process-accordion-item {
  border-bottom: 1px solid rgba(22, 24, 31, 0.1);
  margin-bottom: 0;
}

.process-accordion-item:last-child {
  border-bottom: none;
}

.process-accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 3rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 0.3s ease;
  will-change: transform;
}

.process-accordion-header:hover {
  /*background-color: rgba(22, 24, 31, 0.02);*/
}

.process-accordion-header[aria-expanded="true"] {
  /*background-color: rgba(22, 24, 31, 0.03);*/
}

.process-accordion-title {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.process-accordion-item .process-number {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: #16181f;
  line-height: 1;
  margin: 0;
  min-width: 60px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.process-accordion-item .process-step-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.3;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.process-accordion-icon {
  color: #16181f;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  will-change: transform;
}

.process-accordion-header[aria-expanded="true"] .process-accordion-icon {
  transform: rotate(180deg);
}

.process-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.process-accordion-content.active {
  max-height: 200px;
}

.process-accordion-body {
  padding: 0 0 3rem 0;
  padding-left: 8rem;
}

.process-accordion-item .process-step-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 12rem 0;
  background-color: #fff;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.cta-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 3rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.5rem 3rem;
  background: #16181f;
  border: 1px solid #16181f;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  will-change: transform;
}

.cta-button:hover {
  background: #fff;
  color: #16181f;
}

.cta-button .cta-arrow {
  color: currentColor;
  transition: transform 0.3s ease;
  will-change: transform;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

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

.footer {
  background-color: #16181f;
  color: #fff;
  padding: 6rem 0 2rem 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #B4BAB9;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.footer-nav-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

.footer-nav-list li {
  margin: 0 0 0.8rem 0;
}

.footer-nav-list a {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #B4BAB9;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.footer-nav-list a:hover {
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #B4BAB9;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.contact-item strong {
  color: #fff;
  font-weight: 500;
}

.contact-item a {
  color: #B4BAB9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #B4BAB9;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
   
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-text {
  opacity: 0;
  transform: translateY(20px);
  animation: loadingFadeIn 1.5s ease-out 0.5s forwards;
}

.loading-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #16181f;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.loading-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes loadingFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   PAGE LOAD SCALING ANIMATION
   ======================================== */
.scale-animate {
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scale-animate:nth-child(1) { animation-delay: 0.1s; }
.scale-animate:nth-child(2) { animation-delay: 0.2s; }
.scale-animate:nth-child(3) { animation-delay: 0.3s; }
.scale-animate:nth-child(4) { animation-delay: 0.4s; }

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   SCROLL INDICATOR
   ======================================== */
.scroll-indicator {
  display: flex;
  justify-content: flex-start;
  margin-top: 0rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: scrollIndicatorFadeIn 1s ease-out 1.5s forwards;
}

@keyframes scrollIndicatorFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scroll-circle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
  will-change: transform;
}

.scroll-arrow {
  color: rgba(255,255,255,0.8);
  animation: scrollArrow 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes scrollArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(1px);
  }
}

/* ========================================
   CTA ARROWS
   ======================================== */
.about-cta, .projects-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #16181f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1.2rem 2.5rem;
  border: 1px solid #16181f;
  background: transparent;
  transition: all 0.3s ease;
}

.about-cta {
  margin-top: 3rem;
}

.cta-arrow {
  color: currentColor;
  transition: transform 0.3s ease;
}

.about-cta:hover .cta-arrow,
.projects-button:hover .cta-arrow {
  transform: translateX(4px);
}

.about-cta:hover {
  background: #16181f;
  color: #fff;
}

.projects-button:hover {
  background: #16181f;
  color: #fff;
}










 

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
  padding: 12rem 0;
  background-color: #f7f7f9;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.values-header {
  text-align: center;
  margin-bottom: 8rem;
}

.values-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.values-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.value-item {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
  will-change: transform;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(22, 24, 31, 0.15);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  color: #16181f;
  transition: all 0.3s ease;
  will-change: transform;
}

.value-icon-img {
  width: 89.6px;
  height: 89.6px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #16181f;
  margin: 0 0 1rem 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.value-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
  padding: 12rem 0;
  background-color: #fff;
}

.why-us-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.why-us-content {
  padding-right: 2rem;
}

.why-us-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.why-us-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.why-us-description p {
  margin: 0 0 2rem 0;
}

.why-us-description p:last-child {
  margin-bottom: 0;
}

.why-us-image {
  position: relative;
}

.why-us-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  transition: all 0.3s ease;
  will-change: transform;
}

.why-us-image:hover .why-us-photo {
  transform: scale(1.02);
}

/* Active navigation state */
.nav-link.active {
  color: #16181f;
  font-weight: 500;
}

/* Footer navigation styles */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #B4BAB9;
  text-decoration: none;
  transition: color 0.3s ease;
  /* Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.footer-nav-link:hover {
  color: #fff;
}

.footer-contact-info {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #B4BAB9;
  margin: 0 0 0.5rem 0;
  /* Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 186, 185, 0.2);
  text-align: center;
}

.footer-copyright {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: #B4BAB9;
  margin: 0;
  /* Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
} 

 

/* Subpage Section Spacing - More Specific */
.subpage .about-section {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
  margin-top: 0 !important;
}

/* Ensure subpage navbar doesn't interfere with content flow */
.subpage .navbar.dark-nav {
  margin-bottom: 0 !important;
  height: auto !important;
}





/* Subpage About Section Layout */
.about-header {
  text-align: center;
  margin-bottom: 8rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-row:last-child {
  margin-bottom: 0;
}

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

.about-row-reverse .about-text-col {
  order: 1;
  justify-content: flex-end;
}

.about-row-reverse .about-image-col {
  order: 2;
}

.about-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  /* Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}



/* Strong text styling */
strong {
  font-weight: 500;
  color: #343639;
} 

/* ========================================
   PORTFOLIO SUBPAGE STYLES
   ======================================== */

/* Project Header */
.project-header {
  padding: 8rem 0 8rem;
  background-color: #fff;
}

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

.project-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.project-header .project-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.project-header .project-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Project Hero */
.project-hero {
  padding: 0 0 4rem;
  background-color: #fff;
}

.project-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 4rem 2rem;
}

.project-hero-image {
  width: 100%;
  aspect-ratio: 3/2; /* 3:2 proportions */
  overflow: hidden;
}

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

/* Project Details */
.project-details {
  padding: 4rem 0 8rem;
  background-color: #fff;
}

.project-details-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

/* Left Column: Images */
.project-images-col {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.project-image-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.project-image-item .project-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.project-image-item:hover .project-detail-img {
  transform: scale(1.05);
}

/* Right Column: Description */
.project-description-col {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.project-description-content {
  height: 100%;
  padding-left: 1rem;
}

.project-section-title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #16181f;
  line-height: 1.2;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.project-description-text {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  /* Optimize font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.project-subtitle {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #5d5f6b;
  line-height: 1.6;
  margin: 2.5rem 0 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.project-subtitle:first-of-type {
  margin-top: 0;
}

.project-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.project-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.project-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #16181f;
  font-weight: bold;
  font-size: 1.2rem;
}




/* ========================================
   PROJECT DETAILS - VERTICAL IMAGE LAYOUT
   ======================================== */
.project-image-col {
  aspect-ratio: 2/3; /* Vertical orientation for the container */
}


/* ========================================
   PROJECT ADDITIONAL IMAGES
   ======================================== */
.project-additional-images {
  padding: 6rem 0;
  background-color: #fff;
}

.project-additional-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}

.project-additional-image {
  width: 100%;
  aspect-ratio: 3/2; /* 3:2 proportions */
  overflow: hidden;
}

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

.project-additional-img:hover {
  transform: scale(1.02);
}

/* ========================================
   PROJECT ADDITIONAL IMAGES - VERTICAL LAYOUT
   ======================================== */
.project-additional-images-vertical {
  padding: 6rem 0;
  background-color: #fff;
}

.project-additional-container-vertical {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.project-additional-image-vertical {
  width: 100%;
  aspect-ratio: 2/3; /* 2:3 proportions - VERTICAL */
  overflow: hidden;
}

@media (max-width: 768px) {
  .project-additional-container-vertical {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
 




/* ========================================
   RESPONSIVE DESIGN - ALL MEDIA QUERIES
   ======================================== */

/* Desktop Large */
@media (max-width: 1024px) {
  .about-container,
  .projects-container,
  .services-container,
  .process-container,
  .cta-container,
  .footer-container,
  .values-container,
  .why-us-container {
    padding: 0 3rem;
    max-width: 1200px;
  }
  
  .about-grid { gap: 6rem; }
  .about-title { font-size: 2.8rem; }
  .about-description { font-size: 1rem; }
  .hero-grid { padding-bottom: 4rem; }
  .projects-title { font-size: 2.8rem; }
  .projects-subtitle { font-size: 1rem; }
  .projects-description { font-size: 1rem; }
  .projects-grid { gap: 3rem; }
  .services-title { font-size: 2.8rem; }
  .services-subtitle { font-size: 1rem; }
  .services-grid { gap: 3rem; }
  .process-title { font-size: 2.8rem; }
  .process-subtitle { font-size: 1rem; }
  .process-grid { gap: 3rem; }
  .cta-title { font-size: 3.5rem; }
  .cta-subtitle { font-size: 1rem; }
  .footer-content { gap: 3rem; }
  .values-title { font-size: 2.8rem; }
  .values-subtitle { font-size: 1rem; }
  .values-grid { gap: 3rem; }
  .why-us-title { font-size: 2.8rem; }
  .why-us-grid { gap: 6rem; }
  
  .project-header {
    padding: 6rem 0 3rem;
  }
  
  .project-header .project-title {
    font-size: 2.8rem;
  }
  
  .project-details-container {
    gap: 3rem;
  }
  
  
  body:not(.homepage) .about-section {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}

/* Tablet Large */
@media (max-width: 1000px) and (min-width: 769px) {
  body .about-container,
  body .projects-container,
  body .services-container,
  body .process-container,
  body .cta-container,
  body .footer-container {
    padding: 0 2rem !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
  
  .subpage .about-section {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  
  body .projects-section,
  body .services-section,
  body .process-section,
  body .cta-section {
    width: 100% !important;
    overflow: visible !important;
  }
}

/* Large Desktop */
@media (max-width: 1200px) {
  .about-section::before {
    display: none;  /* Hide about section background lines on screens below 1200px */
  }
}

/* Tablet */
@media (max-width: 900px) {
  .navbar {
    padding: 3rem 2rem;  /* Add proper padding for tablet */
  }
  
  .navbar.dark-nav {
    padding: 3rem 2rem;  /* Override dark-nav padding for tablet */
  }
  
  .navbar-logo {
    height: 3.5rem;  /* Slightly smaller logo for tablet */
  }
  
  .navbar-logo-col { 
    grid-column: 1 / span 1; 
    padding-left: 0;  /* Ensure no extra padding */
  }
  
  .navbar-menu-col { 
    grid-column: 2 / span 5; 
    padding-right: 0;  /* Ensure no extra padding */
  }
  .grid-overlay { 
    display: none;  /* Hide grid overlay on tablet and mobile */
  }
  
  .hero-grid {
    display: block;  /* Remove grid layout on tablet and mobile */
  }
  
  .hero-title-col {
    padding-left: 2rem;  /* Add left padding to match navbar */
  }
  
  
  /* Homepage left alignment for tablet and mobile */
  .homepage .about-container,
  .homepage .projects-container,
  .homepage .services-container {
    text-align: left;
  }
  
  .homepage .about-header,
  .homepage .projects-header,
  .homepage .services-header {
    text-align: left;
  }
  
  .homepage .about-title,
  .homepage .projects-title,
  .homepage .services-title {
    text-align: left;
  }
  
  .homepage .about-subtitle,
  .homepage .projects-subtitle,
  .homepage .services-subtitle,
  .homepage .projects-description {
    text-align: left;
  }
  
  .homepage .projects-cta,
  .homepage .services-cta {
    text-align: left;
  }
  
  .homepage .about-photo-col {
    text-align: left;
    justify-content: flex-start;  /* Align photo to the left */
  }
  
  .homepage .process-title,
  .homepage .process-subtitle {
    text-align: left;
  }
  
  .homepage .cta-content {
    text-align: left;
  }
  
  .homepage .cta-title,
  .homepage .cta-subtitle {
    text-align: left;
  }
  
  .homepage .service-item {
    padding: 0;  /* Reset padding to avoid adding to container padding */
  }
  
  body:not(.homepage) .service-item {
    padding: 0;  /* Reset padding to match homepage mobile behavior */
  }
  
  .process-accordion-item .process-number {
    font-size: 2.5rem;  /* Smaller number for mobile */
  }
  
  .process-accordion-item .process-step-title {
    font-size: 1.4rem;  /* Smaller step title for mobile */
  }
  
  /* Footer left alignment for tablet and mobile */
  .footer-container,
  .footer-content,
  .footer-brand,
  .footer-nav-title,
  .footer-nav-list,
  .footer-description,
  .footer-copyright,
  .contact-info,
  .contact-item {
    text-align: left;
  }

  /* Subpages left alignment for tablet and mobile */
  body:not(.homepage) .about-container,
  body:not(.homepage) .about-header,
  body:not(.homepage) .about-title,
  body:not(.homepage) .about-subtitle,
  body:not(.homepage) .about-description,
  body:not(.homepage) .about-row,
  body:not(.homepage) .about-text-content,
  body:not(.homepage) .about-section-title,
  body:not(.homepage) .about-image-col,
  body:not(.homepage) .about-text-col,
  body:not(.homepage) .values-container,
  body:not(.homepage) .values-header,
  body:not(.homepage) .values-title,
  body:not(.homepage) .values-subtitle,
  body:not(.homepage) .values-grid,
  body:not(.homepage) .value-item,
  body:not(.homepage) .value-icon {
    text-align: left;
    justify-content: left;
    margin: 0 0 2rem 0; /* Override the auto margins to remove centering */
  }
  
  body:not(.homepage) .value-icon svg {
    margin: 0 auto;
  }
  body:not(.homepage) .value-title,
  body:not(.homepage) .value-description,
  body:not(.homepage) .projects-container,
  body:not(.homepage) .projects-header,
  body:not(.homepage) .projects-title,
  body:not(.homepage) .projects-subtitle,
  body:not(.homepage) .projects-description,
  body:not(.homepage) .projects-grid,
  body:not(.homepage) .project-item,
  body:not(.homepage) .project-info,
  body:not(.homepage) .project-title,
  body:not(.homepage) .project-location,
  body:not(.homepage) .project-categories,
  body:not(.homepage) .project-category,
  body:not(.homepage) .process-section,
  body:not(.homepage) .process-container,
  body:not(.homepage) .process-header,
  body:not(.homepage) .process-title,
  body:not(.homepage) .process-subtitle,
  body:not(.homepage) .process-grid,
  body:not(.homepage) .process-accordion-item,
  body:not(.homepage) .process-step-title,
  body:not(.homepage) .process-step-description,
  body:not(.homepage) .cta-section,
  body:not(.homepage) .cta-container,
  body:not(.homepage) .cta-content,
  body:not(.homepage) .cta-title,
  body:not(.homepage) .cta-subtitle,
  body:not(.homepage) .cta-button,
  body:not(.homepage) .contact-section,
  body:not(.homepage) .contact-container,
  body:not(.homepage) .contact-header,
  body:not(.homepage) .contact-title,
  body:not(.homepage) .contact-description,
  body:not(.homepage) .contact-content,
  body:not(.homepage) .contact-email,
  body:not(.homepage) .services-section,
  body:not(.homepage) .services-container,
  body:not(.homepage) .services-header,
  body:not(.homepage) .services-title,
  body:not(.homepage) .services-subtitle,
  body:not(.homepage) .services-grid,
  body:not(.homepage) .service-item,
  body:not(.homepage) .service-icon,
  body:not(.homepage) .service-title,
  body:not(.homepage) .service-description,
  body:not(.homepage) .service-features,
  body:not(.homepage) .services-cta,
  body:not(.homepage) .services-cta-button {
    text-align: left;
    justify-content: left;
  }
  .navbar-menu { display: none; }
  .hamburger-menu { display: flex; }
  .navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(22, 24, 31, 0.1);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(22, 24, 31, 0.1);
    z-index: 1000;
  }
  
  /* Dark background for subpages mobile menu */
  body:not(.homepage) .navbar-menu.active {
    background: #16181f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .navbar-menu.active li { margin: 0; padding: 0.8rem 2rem; }
  .navbar-menu.active li a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #16181f;
  }
  
  /* White text for subpages mobile menu */
  body:not(.homepage) .navbar-menu.active li a {
    color: #fff;
  }

  
  .project-header {
    padding: 5rem 0 2.5rem;
  }
  
  .project-header .project-title {
    font-size: 2.5rem;
  }
  
  .project-header .project-subtitle {
    font-size: 1rem;
  }
  
  .project-details-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-images-col {
    order: 2;
  }
  
  .project-description-col {
    order: 1;
    position: static;
    padding-left: 0;
  }
  
}

/* Mobile Large */
@media (max-width: 768px) {
  .navbar {
    padding: 2rem 2rem;  /* Add proper padding for mobile */
  }
  
  .navbar.dark-nav {
    padding: 2rem 2rem;  /* Override dark-nav padding for mobile */
  }
  
  .navbar-grid {
    height: 3.5rem;  /* Adjust navbar height for mobile */
  }
  
  .navbar-logo {
    height: 3rem;  /* Smaller logo for mobile */
  }
  
  .navbar-logo-col {
    padding-left: 0;  /* Ensure no extra padding */
  }
  
  .navbar-menu-col {
    padding-right: 0;  /* Ensure no extra padding */
  }
  
  .about-container,
  .projects-container,
  .services-container,
  .process-container,
  .cta-container,
  .footer-container,
  .values-container,
  .why-us-container {
    padding: 0 2rem !important;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 2.5rem;  /* 40px - more appropriate for mobile */
  }
  
  .hero-title span {
    font-size: 1.8rem;  /* 28.8px - more appropriate for mobile */
  }
  
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-title {
    font-size: 2.4rem;
    margin: 0 0 2rem 0;
  }
  
  .about-description {
    /*font-size: 1.1rem;*/
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .projects-title {
    font-size: 2.4rem;
  }
  
  .projects-subtitle {
    /*font-size: 0.9rem;*/
  }
  
  .projects-description {
    /*font-size: 0.9rem;*/
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-item {
    margin: 2rem 0;
  }
  
  .services-title {
    padding-bottom: 15px;
    font-size: 2.4rem;
  }
  
  .services-subtitle {
    /*font-size: 1rem;*/
  }

  .service-title {
  font-size: 1.6rem;
}

.service-description {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
  }


  .process-accordion-content.active {
  max-height: 280px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .values-title {
    font-size: 2.4rem;
  }
  
  .values-subtitle {
    font-size: 1rem;
  }
  
  .value-item {
    padding: 2rem 1.5rem;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .why-us-title {
    font-size: 2.4rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-description {
    font-size: 1rem;
  }
  
  .contact-email {
    font-size: 1.8rem;
  }
  
  
  .why-us-content {
    padding-right: 0;
  }
  
  .cta-title {
    font-size: 3rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .navbar.dark-nav .navbar-menu {
    background-color: #16181f;
  }
  
  .navbar.dark-nav .navbar-menu a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar.dark-nav .navbar-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  body:not(.homepage) .about-section {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  
  .about-header {
    margin-bottom: 6rem;
  }
  
  .about-row {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
  }
  
  .about-row-reverse .about-text-col,
  .about-row-reverse .about-image-col {
    order: unset;
  }
  
  .about-section-title {
    font-size: 1.8rem;
  }
  
  .project-header-container,
  .project-hero-container,
  .project-details-container {
    padding: 0 1.5rem;
  }

  
  .project-header {
    padding: 4rem 0 4rem;
  }

  .project-hero {
    padding: 0 0 2rem;
  }
  
  .project-header .project-title {
    font-size: 2.2rem;
  }
  
  .project-section-title {
    font-size: 2rem;
  }

  .project-details {
    padding: 0rem 0 4rem;
  }
  
  .project-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .project-description-text {
    font-size: 1rem;
  }
  
  .project-features li {
    font-size: 1rem;
  }
  
  .process-accordion-item .process-number {
    font-size: 2rem;  /* Smaller number for very small screens */
  }
  
  .process-accordion-item .process-step-title {
    font-size: 1.2rem;  /* Smaller step title for very small screens */
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-description {
    font-size: 0.9rem;
  }
  
  .contact-email {
    font-size: 1.5rem;
  }
  
}

/* Mobile Small */
@media (max-width: 480px) {
  .navbar {
    padding: 1.5rem 1.5rem;  /* Smaller padding for very small screens */
  }
  
  .navbar.dark-nav {
    padding: 1.5rem 1.5rem;  /* Override dark-nav padding for very small screens */
  }
  
  .navbar-grid {
    height: 3rem;  /* Adjust navbar height for very small screens */
  }
  
  .navbar-logo {
    height: 2.5rem;  /* Even smaller logo for very small screens */
  }
  
  .about-container,
  .projects-container,
  .services-container,
  .process-container,
  .cta-container,
  .footer-container,
  .values-container,
  .why-us-container {
    padding: 0 1.5rem !important;
    max-width: 100% !important;
  }
  
  .hero-title {
    font-size: 2.5rem;    /* 32px - even smaller for very small screens */
    padding-bottom: 1.5rem;
  }
  
  .hero-title span {
    font-size: 1.5rem;  /* 24px - even smaller for very small screens */
  }
  
  
  .about-section:not(body:not(.homepage) .about-section),
  .projects-section,
  .services-section,
  .process-section,
  .cta-section,
  .values-section,
  .why-us-section {
    padding: 6rem 0;
  }
  
  .subpage .about-section {
    padding-top: 6rem !important;
    padding-bottom: 6rem;
  }
  

/*  .about-title { font-size: 2rem; }
  .projects-title { font-size: 2.2rem; }
  .services-title { font-size: 2.2rem; }
  .process-title { font-size: 2.2rem; }
  .cta-title { font-size: 2.5rem; }
  .values-title { font-size: 2.2rem; }
  .why-us-title { font-size: 2.2rem; }*/
  
/*  .about-subtitle,
  .projects-subtitle,
  .projects-description,
  .services-subtitle,
  .process-subtitle,
  .cta-subtitle,
  .values-subtitle {
    font-size: 0.9rem;
  }*/
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .value-item {
    padding: 2rem 1rem;
  }
  
  .value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
  }
  
  .value-icon-img {
    width: 67.2px;
    height: 67.2px;
  }
  
  .value-title {
    font-size: 1.2rem;
  }
  
  .value-description {
    font-size: 0.95rem;
  }
  
  .why-us-grid {
    gap: 3rem;
  }
  
  .why-us-description {
    font-size: 1rem;
  }
  
  .why-us-description p {
    margin: 0 0 1.5rem 0;
  }
  
  .about-cta { padding: 1rem 2rem; font-size: 0.8rem; }
  .projects-button { padding: 1rem 2rem; font-size: 0.8rem; }
  .services-cta-button { padding: 1rem 2rem; font-size: 0.8rem; }
  .cta-button { padding: 1.2rem 2rem; font-size: 0.9rem; }
  
  .about-header,
  .projects-header,
  .services-header,
  .process-header,
  .values-header {
    margin-bottom: 4rem;
  }
  
  body:not(.homepage) .about-section {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  
  .about-header {
    margin-bottom: 4rem;
  }
  
  .about-row {
    gap: 3rem;
    margin-bottom: 4rem;
  }
  
  .about-section-title {
    font-size: 1.6rem;
  }
  
  .project-header-container,
  .project-hero-container,
  .project-details-container {
    padding: 0 1rem;
  }

  .project-hero {
    padding: 0 0 0;
  }

  .project-description-content {
    padding-top: 3rem;
  }

  .project-additional-images {
    padding: 2rem 0 0 0;
  }

  .project-additional-container {
    gap: 2rem;
  }

.project-additional-images-vertical {
  padding: 2rem 0 0 0;
}

  .project-details {
    padding-bottom: 0rem;
    margin-bottom: 0rem;
  }
  
  .project-header {
    padding: 4rem 0 4rem;
  }
  
  .project-header .project-title {
    font-size: 2rem;
  }
  
  .project-header .project-subtitle {
    font-size: 1rem;
  }
  
  .project-section-title {
    font-size: 1.75rem;
  }
  
  .project-subtitle {
    font-size: 1.1rem;
  }
  
  .project-details {
    padding: 2rem 0 4rem;
  }
  
  
  .project-images-col {
    gap: 1.5rem;
  }
  
}
