/* ===== PROJECTS HERO ===== */
.projects-hero {
  margin-top: 72px;
}
.projects-hero-bg {
  background-color: #f5f5f3;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
}
.projects-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./Assets/projects_hero_1.png') center center / cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}
.projects-hero-content {
  position: relative;
  z-index: 1;
}
.projects-hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.projects-hero-text {
  max-width: 480px;
  flex-shrink: 0;
  margin-top: -25%;
}
.projects-hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.projects-hero-text p {
  color: #444;
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 400px;
}
.projects-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.projects-hero-image img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== CTA ===== */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}
.about-cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== CURRENT PROJECTS ===== */
.current-projects-bg {
  background-color: #f5f5f3;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.current-projects-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./Assets/projects_hero_1.png') center center / cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}
.current-projects-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.current-projects-text {
  max-width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.current-projects-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.current-projects-text p {
  font-size: 1rem;
  color: #555;
  font-family: var(--font-heading);
  font-weight: 500;
}
.current-projects-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}
.current-projects-image img {
  max-height: 460px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== PROJECTS CTA ===== */
.projects-cta-section {
  background: url('./Assets/about_about_footer.png') center center / cover no-repeat;
  background-color: #0d1f3c;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.projects-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 1);
}
.projects-cta-inner {
  position: relative;
  z-index: 1;
}
.projects-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.3;
}
.projects-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition);
}
.projects-cta-btn:hover {
  background: var(--blue-dark);
}

/* ===== CRAFTED FOR PERFECTION ===== */
.crafted-section {
  padding: 100px 0;
  background: var(--white);
}
.crafted-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.crafted-header-left h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.crafted-header-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  text-align: right;
  flex-shrink: 0;
}
.crafted-list {
  display: flex;
  flex-direction: column;
}
.crafted-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.crafted-item:last-child {
  border-bottom: 1px solid var(--border);
}
.crafted-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #bbb;
  width: 36px;
  flex-shrink: 0;
}
.crafted-thumb {
  width: 120px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.crafted-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.crafted-info {
  flex: 1;
}
.crafted-info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.crafted-info p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}
.crafted-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #c5d3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.crafted-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.crafted-arrow:hover svg path {
  stroke: white;
}

/* ===== PROJECTS LIST ===== */
.projects-list {
  padding: 100px 0;
  background: var(--off-white);
}
.projects-list-header {
  text-align: center;
  margin-bottom: 60px;
}
.projects-list-header h2 {
  margin-top: 10px;
  margin-bottom: 12px;
}
.projects-list-header p {
  color: #666;
  font-size: 0.95rem;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===== PROJECT CARD ===== */
.pcard {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.pcard:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.pcard-img {
  position: relative;
  overflow: hidden;
}
.pcard-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pcard:hover .pcard-img img {
  transform: scale(1.04);
}
.pcard-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.pcard-body {
  padding: 28px 32px 32px;
}
.pcard-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pcard-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}
.pcard-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1.5px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.pcard-cta:hover {
  opacity: 0.7;
}

/* ===== UPCOMING PROJECTS ===== */
.upcoming-section {
  padding: 100px 0;
  background: var(--white);
}
.upcoming-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.upcoming-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  max-width: 860px;
  margin-bottom: 48px;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.upcoming-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 16px;
}
.upcoming-thumb {
  border-radius: 14px;
  overflow: hidden;
}
.upcoming-thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.upcoming-card:hover .upcoming-thumb img {
  transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .projects-hero-content {
    flex-direction: column;
    padding: 60px 24px;
    align-items: flex-start;
  }
  .projects-hero-image {
    width: 100%;
    justify-content: center;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .projects-hero-text h1 {
    font-size: 1.8rem;
  }
  .pcard-img img {
    height: 220px;
  }
}
