/* PORTFOLIO HERO */
#portfolio-hero {
  background: #2f4256;
  color: #ffffff;
  padding: 120px 20px 90px;
  text-align: center;
}

.portfolio-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.portfolio-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
}

.portfolio-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 40px;
}

.port-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffffff;
  color: #2f4256;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f4f6f8;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Divider */
.portfolio-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 80px auto 60px;
  max-width: 1100px;
}

/* STATS */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  background: #f28c28;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-label {
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  #portfolio-hero {
    padding: 90px 16px 70px;
  }

  .portfolio-divider {
    margin: 60px auto 40px;
  }
}


/* SECTION */
.ft-section {
  background: #f7f9fb;
  padding: 100px 20px;
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.ft-header {
  text-align: center;
  margin-bottom: 60px;
}

.ft-title {
  font-size: 40px;
  color: #1f2d3d;
  margin-bottom: 12px;
}

.ft-subtitle {
  font-size: 16px;
  color: #6b7785;
  max-width: 650px;
  margin: 0 auto;
}

/* SLIDER */
.ft-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.ft-slider-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

/* CARD */
.ft-card {
  min-width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.ft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.ft-content {
  padding: 48px;
}

.ft-badge {
  background: #f28c28;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.ft-project-title {
  font-size: 28px;
  color: #1f2d3d;
}

.ft-category {
  display: block;
  color: #f28c28;
  margin-bottom: 16px;
}

.ft-description {
  color: #5f6c7b;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* META */
.ft-meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 24px;
}

.ft-meta div strong {
  display: block;
  font-size: 16px;
}

.ft-meta div span {
  font-size: 12px;
  color: #7b8794;
}

/* HIGHLIGHTS */
.ft-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ft-highlights ul {
  list-style: none;
  padding: 0;
}

.ft-highlights li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.ft-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f28c28;
}

/* CONTROLS */
.ft-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.ft-controls button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.ft-dots {
  display: flex;
  gap: 6px;
}

.ft-dots span {
  width: 20px;
  height: 4px;
  background: #d0d6dc;
  border-radius: 4px;
}

.ft-dots span.active {
  background: #f28c28;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ft-card {
    grid-template-columns: 1fr;
  }
  .ft-content {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .ft-meta {
    grid-template-columns: 1fr;
  }
  .ft-highlights {
    grid-template-columns: 1fr;
  }
}


.projects-section {
  padding: 90px 0;
  background: #f9fafb;
}

.projects-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.projects-header-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #243746;
}

.projects-header-left p {
  color: #7a8a97;
}

.projects-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.projects-sort {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.projects-view-toggle button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: #eaeef2;
  cursor: pointer;
}

.projects-view-toggle .active {
  background: #f28c28;
  color: #fff;
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* Card */
.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

.project-image {
  height: 220px;
  background: #eee;
  position: relative;
}

.bookmark {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}

.before-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: #fff;
  font-weight: 600;
}

.project-content {
  padding: 24px;
}

.project-content h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.project-location {
  font-size: 14px;
  color: #7a8a97;
}

.project-content p {
  margin: 12px 0;
  color: #4f5f6c;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #6b7b88;
  margin-bottom: 12px;
}

.project-review {
  background: #f5f7f9;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.project-tags span {
  background: #eef2f5;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.project-tags .more {
  background: #dde3e8;
}

.project-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border: 2px solid #243746;
  border-radius: 10px;
  font-weight: 600;
  color: #243746;
  text-decoration: none;
}

.project-cta:hover {
  background: #243746;
  color: #fff;
}
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
