/* Projects page – Figma design system (projects folder) */

.projects-page {
  background-color: var(--color-bg);
  min-height: 100vh;
  position: relative;
}

/* ========== Mobile Navigation ========== */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-logo {
  width: 50px;
  height: 42px;
  object-fit: cover;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1b1f26;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #1b1f26;
  transition: all 0.3s ease;
}

.menu-icon::before { top: -8px; }
.menu-icon::after { bottom: -8px; }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(27, 31, 38, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1b1f26;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid #e5e5ea;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1b1f26;
  text-decoration: none;
}

.mobile-nav-links a.active {
  color: #0052e2;
}

.mobile-cta {
  width: 100%;
}

/* ========== Desktop Navbar ========== */
.projects-page .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none; /* Hidden on mobile by default */
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .projects-page .navbar {
    display: flex; /* Show on desktop */
    padding: 20px 48px;
  }
}

.projects-page .frame-6 {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .projects-page .frame-6 {
    gap: 96px;
  }
}

.projects-page .logo-r {
  width: 64px;
  height: 54px;
  object-fit: cover;
  flex-shrink: 0;
}

.projects-page .navbar-2 {
  display: none;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .projects-page .navbar-2 {
    display: flex;
    gap: 24px;
  }
}

.projects-page .navbar-link {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-text);
  transition: color 0.2s;
  text-decoration: none;
}

.projects-page .navbar-link:hover,
.projects-page .navbar-link[aria-current="page"] {
  color: var(--color-primary);
}

.projects-page .div-4 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.projects-page .phone-number {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  display: none;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .projects-page .phone-number {
    display: block;
  }
}

.projects-page .button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary button (filled) */
.projects-page .button .button-2,
.projects-page .button .button-6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-radius: var(--radius-s);
  transition: background-color 0.2s;
}

.projects-page .button:hover .button-2,
.projects-page .button:hover .button-6 {
  background-color: var(--color-primary-hover);
}

.projects-page .button .button-3,
.projects-page .button .button-7 {
  /* white-space: nowrap; Removed to prevent cutoff on small screens */
}

.projects-page .button .icons {
  flex-shrink: 0;
}

/* Secondary button (outline) */
.projects-page .button .button-4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-radius: var(--radius-s);
  transition: background-color 0.2s, color 0.2s;
}

.projects-page .button:hover .button-4 {
  background-color: #f5f7fa;
}

/* ========== Hero ========== */
.projects-page .hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  background: #1b1f26;
  overflow: hidden;
  margin-top: 74px; /* Offset for mobile nav */
}

@media (min-width: 1024px) {
  .projects-page .hero-section {
    min-height: 480px;
    padding: 160px 48px 100px;
    margin-top: 0; /* Reset offset for desktop */
  }
}

.projects-page .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.projects-page .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.projects-page .frame-5 {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.projects-page .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.projects-page .see-why-of-our {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.2;
  color: #ffffff;
}

.projects-page .text-wrapper-3 {
  color: #f9f9f9;
}

.projects-page .text-wrapper-4 {
  color: var(--color-accent);
}

.projects-page .INDUSTRIAL {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.projects-page .button-container-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ========== Projects section ========== */
.projects-page .frame-7 {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.projects-page .frame-8 {
  margin-bottom: 40px;
}

.projects-page .frame-8 .proven-results {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
}

.projects-page .text-wrapper-10 {
  color: var(--color-primary);
}

.projects-page .text-wrapper-11 {
  color: var(--color-text);
}

.projects-page .text-wrapper-12 {
  color: var(--color-text);
}

.projects-page .frame-9 {
  margin-bottom: 56px;
}

.projects-page .frame-9:last-of-type {
  margin-bottom: 0;
}

.projects-page .frame-9 > .frame-8 {
  margin-bottom: 24px;
}

.projects-page .text-wrapper-13 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  color: var(--color-text);
}

/* Slider container */
.projects-page .projects,
.projects-page .projects-2 {
  position: relative;
  width: 100%;
}

.projects-page .frame-10 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.projects-page .frame-11 {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.projects-page .frame-11::-webkit-scrollbar {
  height: 8px;
}

.projects-page .frame-11::-webkit-scrollbar-track {
  background: #f2f2f7;
  border-radius: 4px;
}

.projects-page .frame-11::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 4px;
}

/* Project cards in slider */
.projects-page .projects-photos,
.projects-page .projects-photos-2 {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-e3);
  overflow: hidden;
}

@media (min-width: 768px) {
  .projects-page .projects-photos,
  .projects-page .projects-photos-2 {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .projects-page .projects-photos,
  .projects-page .projects-photos-2 {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.projects-page .img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.projects-page .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-page .frame-wrapper,
.projects-page .frame-wrapper-2 {
  padding: 24px;
}

.projects-page .frame-12 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects-page .div-wrapper {
  margin: 0;
}

.projects-page .text-wrapper-14 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-text);
  margin: 0;
}

.projects-page .text-wrapper-15,
.projects-page .text-wrapper-18,
.projects-page .div-5 {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted);
  margin: 0;
}

.projects-page .text-wrapper-16 {
  color: var(--color-text);
  font-weight: 600;
}

.projects-page .text-wrapper-17 {
  color: var(--color-text-muted);
}

/* Decorative rectangles (hide unless needed for design) */
.projects-page .rectangle,
.projects-page .rectangle-2 {
  display: none;
}

/* Slider nav arrows */
.projects-page .frame-13 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.projects-page .icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.projects-page .icons-wrapper:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-primary);
}

.projects-page .icons-wrapper .icons {
  width: 20px;
  height: 20px;
}

/* ========== CTA section ========== */
section.cta-section,
.projects-page .cta-section,
.projects-page section.cta-section,
main.projects-page .cta-section,
main.projects-page section.cta-section {
  background: linear-gradient(to right, #0052e2 0%, #00d87b 100%) !important;
  background-color: #0052e2 !important;
  padding: 80px 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  position: relative;
  display: block;
  overflow: hidden;
}

/* Brick pattern overlay */
.projects-page .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 20px;
  background-position: -1px -1px;
  pointer-events: none;
  z-index: 1;
}

.projects-page .cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 20px;
  background-position: 19px 9px;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .projects-page .cta-section {
    padding: 100px 48px;
  }
}

@media (min-width: 1024px) {
  .projects-page .cta-section {
    padding: 120px 48px;
  }
}

.projects-page .cta-section * {
  box-sizing: border-box;
}

.projects-page .cta-container {
  background-color: transparent;
  background: transparent;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.projects-page .cta-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.projects-page .cta-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
}

.projects-page .cta-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  color: #ffffff !important;
  margin: 0;
  letter-spacing: -0.02em;
}

.projects-page .cta-description {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff !important;
  margin: 0;
  max-width: 700px;
}

.projects-page .cta-benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  padding-top: 8px;
}

.projects-page .cta-benefits-title {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff !important;
  margin: 0;
}

.projects-page .cta-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  width: 100%;
  align-items: center;
}

.projects-page .cta-benefits-list li {
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff !important;
  position: relative;
  padding: 0;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-page .cta-benefits-list li::before {
  content: "•";
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}

.projects-page .cta-benefits-list li span {
  display: inline-block;
}

.projects-page .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

.projects-page .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background-color: transparent;
  color: #ffffff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-radius: 12px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, opacity 0.2s;
  position: relative;
  z-index: 2;
}

.projects-page .btn-cta-primary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.projects-page .btn-cta-primary:active {
  transform: translateY(0);
}

.projects-page .btn-cta-primary svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.projects-page .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: "Inter Tight", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, opacity 0.2s;
  position: relative;
  z-index: 2;
}

.projects-page .btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.projects-page .btn-cta-secondary:active {
  transform: translateY(0);
}

/* ========== Footer ========== */
.projects-page .footer {
  background: #ffffff;
  padding: 48px 24px 32px;
}

.projects-page .footer-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.projects-page .footer-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .projects-page .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.projects-page .footer-logo {
  margin-bottom: 8px;
}

.projects-page .footer-logo-2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.projects-page .footer .logo {
  width: 64px;
  height: 54px;
  object-fit: cover;
}

.projects-page .footer-tagline {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text);
  margin: 0;
}

.projects-page .text-wrapper-5 {
  color: var(--color-zila);
}

.projects-page .text-wrapper-6 {
  color: var(--color-text);
}

.projects-page .footer-quick-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .projects-page .footer-quick-links {
    flex-direction: row;
    gap: 48px;
    flex-wrap: wrap;
  }
}

.projects-page .div-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.projects-page .text-wrapper-7 {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.projects-page .div-3 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.projects-page .div-3 a,
.projects-page .div-3 span {
  font-size: 16px;
  color: var(--color-text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.projects-page .div-3 a:hover {
  color: var(--color-primary);
}

.projects-page .quick-link,
.projects-page .quick-link-2,
.projects-page .text-wrapper-8,
.projects-page .text-wrapper-9 {
  font-size: 16px;
  color: var(--color-text-muted);
}

.projects-page .contact-info-title {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.projects-page .contact-info-detail {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.projects-page .contact-info-label {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  flex-shrink: 0;
}

.projects-page .line {
  flex-shrink: 0;
  margin: 0;
  display: block;
}

.projects-page .footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .projects-page .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.projects-page .copyright-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-text-muted);
}

.projects-page .ant-design-copyright {
  flex-shrink: 0;
}

.projects-page .footer-copyright .div-4 {
  justify-content: center;
}

.projects-page .footer-copyright .div-4 a {
  font-size: 16px;
  color: var(--color-text-muted);
  text-decoration: none;
}

.projects-page .footer-copyright .div-4 a:hover {
  color: var(--color-primary);
}
