/* ============================================
   PROJECT DETAIL PAGE STYLES
   ============================================ */

/* Header Dark Variant - White on dark hero */
.header-dark .logo { color: var(--white); }
.header-dark .nav a { color: rgba(255,255,255,0.85); }
.header-dark .nav a:hover { color: var(--white); }
.header-dark .header-phone { color: rgba(255,255,255,0.85); }
.header-dark .menu-toggle span { background: var(--white); }
.header-dark .header-btn { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.header-dark .header-btn:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.header-dark.scrolled .logo { color: var(--dark); }
.header-dark.scrolled .nav a { color: var(--gray-700); }
.header-dark.scrolled .header-phone { color: var(--gray-700); }
.header-dark.scrolled .menu-toggle span { background: var(--dark); }

/* ============================================
   PROJECT HERO
   ============================================ */
.project-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
}
.project-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.project-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.5) 100%);
}
.project-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  transition: color 0.3s ease;
}
.back-link:hover { color: var(--white); }
.project-hero-info {
  max-width: 700px;
}
.project-hero-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.project-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.project-hero-slogan {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.project-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.project-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.phs-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phs-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.phs-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.project-hero-actions {
  display: flex;
  gap: 12px;
}
.project-hero-actions .btn-primary {
  padding: 14px 28px;
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--dark);
}
.project-hero-actions .btn-primary:hover {
  background: var(--gray-100);
}
.project-hero-actions .btn-outline-light {
  padding: 14px 28px;
  font-size: 0.9375rem;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.project-hero-actions .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .project-hero { min-height: auto; padding: 100px 0 40px; }
  .project-hero-stats { flex-wrap: wrap; gap: 24px; }
  .project-hero-actions { 
    flex-direction: row; 
  }
  .project-hero-actions .btn-primary,
  .project-hero-actions .btn-outline-light {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 12px 14px;
    font-size: 0.8125rem;
  }
}

/* ============================================
   PROJECT INFO BAR
   ============================================ */
.project-info-bar {
  background: var(--dark);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-bar-grid {
  display: flex;
  justify-content: center;
  gap: 0;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.info-bar-item:last-child {
  border-right: none;
}
.info-bar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  color: var(--white);
}
.info-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-bar-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.info-bar-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .info-bar-item { padding: 24px 32px; }
}
@media (max-width: 768px) {
  .info-bar-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .info-bar-item { 
    padding: 16px 12px; 
    border-right: 1px solid rgba(255,255,255,0.1); 
    border-bottom: none;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .info-bar-item:nth-child(3n) { border-right: none; }
  .info-bar-icon { width: 40px; height: 40px; }
  .info-bar-value { font-size: 1rem; }
  .info-bar-label { font-size: 0.625rem; }
}

/* ============================================
   PROJECT STICKY NAV
   ============================================ */
.project-sticky-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 80px;
  z-index: 90;
  transition: all 0.3s ease;
}
.project-sticky-nav.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sticky-nav-inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sticky-nav-inner::-webkit-scrollbar {
  display: none;
}
.sticky-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.sticky-nav-link:hover {
  color: var(--dark);
}
.sticky-nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .project-sticky-nav { top: 70px; }
  .sticky-nav-inner {
    justify-content: flex-start;
    padding: 0 16px;
  }
  .sticky-nav-link { padding: 16px 16px; font-size: 0.8125rem; }
}

/* ============================================
   PROJECT NUMBERS
   ============================================ */
.project-numbers {
  padding: 80px 0;
  background: var(--dark);
}
.project-numbers .section-header h2 {
  color: var(--white);
}
.project-numbers .section-tag {
  color: var(--accent);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.number-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.number-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201, 162, 39, 0.3);
}
.number-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 14px;
  margin: 0 auto 20px;
  color: var(--accent);
}
.number-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.number-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .number-card { padding: 24px 16px; }
  .number-value { font-size: 2.5rem; }
}

/* ============================================
   PROJECT SPECS (Technical)
   ============================================ */
.project-specs {
  padding: 80px 0;
  background: var(--dark);
}
.project-specs .section-header h2 {
  color: var(--white);
}
.project-specs .section-tag {
  color: var(--accent);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.spec-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201, 162, 39, 0.3);
}
.spec-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.spec-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 992px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROJECT OVERVIEW
   ============================================ */
.project-overview {
  padding: 100px 0;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.overview-content h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.overview-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.overview-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.oh-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
}
.oh-item svg { color: var(--accent); flex-shrink: 0; }
.overview-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 992px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .project-overview { padding: 64px 0; }
  .overview-highlights { grid-template-columns: 1fr; }
}

/* ============================================
   PROJECT GALLERY
   ============================================ */
.project-gallery {
  padding: 100px 0;
  background: var(--gray-100);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 576px) {
  .project-gallery { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  text-align: center;
  color: var(--white);
  font-size: 0.9375rem;
  margin-top: 16px;
  opacity: 0.8;
}
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* ============================================
   PROJECT FEATURES
   ============================================ */
.project-features-section {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--white);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .project-features-section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROJECT LOCATION
   ============================================ */
.project-location {
  display: block;
  padding: 100px 0;
  background: var(--dark);
}
.project-location .container {
  max-width: var(--container);
  margin: 0 auto;
}
.project-location .location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.project-location .location-info {
  order: 1;
}
.project-location .location-map {
  order: 2;
  width: 100%;
}
.project-location .location-map iframe {
  width: 100%;
  min-height: 500px;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.location-info h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.location-info > p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
}
.location-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}
.lh-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  min-width: 0;
}
.lh-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.lh-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}
.lh-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lh-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.lh-value {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
}

.location-map--mobile {
  display: none;
  margin-top: 32px;
}
.location-map--mobile iframe {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .project-location .location-grid { grid-template-columns: 1fr; gap: 0; }
  .project-location .location-info { order: 1; width: 100%; max-width: 100%; }
  .location-highlights { grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; }
  .lh-item { 
    padding: 16px; 
    gap: 10px; 
    flex-direction: column; 
    align-items: flex-start; 
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  .lh-icon { width: 36px; height: 36px; }
  .lh-label { font-size: 0.8125rem; }
  .lh-value { font-size: 0.75rem; }
  .location-map--desktop { display: none; }
  .location-map--mobile { display: block; }
}
@media (max-width: 576px) {
  .project-location { padding: 64px 0; }
  .location-highlights { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lh-item { padding: 14px; }
}

/* ============================================
   FLOOR PLANS
   ============================================ */
.project-floor-plans {
  padding: 100px 0;
  background: var(--gray-100);
}
.floor-plan-viewer {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.floor-plan-viewer iframe {
  width: 100%;
  min-height: 600px;
  border-radius: 8px;
}
.floor-plan-download {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .project-floor-plans { padding: 64px 0; }
  .floor-plan-viewer iframe { min-height: 400px; }
}

/* ============================================
   PROJECT CONTACT
   ============================================ */
.project-contact {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-info-side h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.contact-info-side > p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cd-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.cd-item:hover { background: var(--gray-200); }
.cd-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  color: var(--accent);
}
.cd-icon-whatsapp { color: #25D366; }
.cd-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cd-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cd-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-form-side {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.project-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.project-form .form-group {
  margin-bottom: 16px;
}
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.project-form input::placeholder,
.project-form textarea::placeholder {
  color: var(--gray-500);
}
.project-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237a7a7a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.project-form .btn-block {
  width: 100%;
  padding: 16px;
  font-size: 0.9375rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 576px) {
  .project-contact { padding: 64px 0; }
  .contact-form-side { padding: 24px; }
  .project-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   OTHER PROJECTS
   ============================================ */
.other-projects {
  padding: 100px 0;
  background: var(--gray-100);
}
.other-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.project-card-mini {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.project-card-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pcm-img {
  width: 200px;
  flex-shrink: 0;
}
.pcm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcm-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pcm-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pcm-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.pcm-body p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.pcm-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s ease;
}
.pcm-link:hover { color: var(--accent); }

@media (max-width: 576px) {
  .other-projects { padding: 64px 0; }
  .project-card-mini { flex-direction: column; }
  .pcm-img { width: 100%; height: 200px; }
}

/* Large Project Cards */
.other-projects-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.project-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.project-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pcl-img {
  position: relative;
  min-height: 350px;
}
.pcl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pcl-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}
.pcl-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
}
.pcl-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pcl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.pcl-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pcl-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--gray-600);
}
.pcl-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pcl-slogan {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}
.pcl-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pcl-features {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.pcl-feature {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pcl-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.pcl-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.pcl-actions {
  display: flex;
  gap: 10px;
}
.pcl-actions .btn-primary {
  padding: 10px 20px;
  font-size: 0.8125rem;
}
.pcl-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  border: 1.5px solid var(--gray-300);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.pcl-actions .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .project-card-large { grid-template-columns: 1fr; }
  .pcl-img { min-height: 250px; }
  .pcl-body { padding: 24px; }
  .pcl-actions { flex-direction: column; }
  .pcl-actions .btn-primary,
  .pcl-actions .btn-outline { width: 100%; justify-content: center; }
}
