/* PROJECTS PAGE - PREMIUM REDESIGNED */

/* ===================== HERO SECTION - UNIQUE DESIGN ===================== */

.projects-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #0a1628 0%,
    #1a2d45 30%,
    #007f5f 70%,
    #005643 100%
  );
}

/* Animated Grid Background Pattern */
.projects-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      0deg,
      rgba(255, 215, 0, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

/* Floating Organic Shapes */
.projects-hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: float 15s ease-in-out infinite;
}

.projects-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.projects-hero-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Geometric Shapes */
.floating-element {
  position: absolute;
  border-radius: 20px;
}

.element-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #007f5f 0%, #ffd700 100%);
  top: 5%;
  left: 2%;
  opacity: 0.08;
  animation: rotate 20s linear infinite;
  transform: rotate(45deg);
}

.element-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #ffd700 0%, #007f5f 100%);
  bottom: 10%;
  right: 5%;
  opacity: 0.06;
  animation: rotate 25s linear infinite reverse;
  transform: rotate(-45deg);
}

.element-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffd700 0%, transparent 70%);
  top: 50%;
  right: 10%;
  opacity: 0.1;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.projects-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 2rem;
  animation: fadeInScale 1.3s ease-out 0.3s both;
}

/* Hero Intro Text */
.hero-intro {
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  animation: slideDown 0.8s ease-out;
  opacity: 0.95;
}

.projects-hero-title {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  word-spacing: 0.2em;
  animation: slideUp 1s ease-out 0.2s both;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.hero-subtitle-main {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 3rem;
  animation: slideUp 1s ease-out 0.4s both;
  color: #e8e8e8;
  line-height: 1.6;
}

/* Stats Display */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  animation: slideUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #f0f0f0;
}

/* Decorative Line */
.hero-divider {
  width: 200px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffffff 50%,
    transparent 100%
  );
  margin: 0 auto;
  animation: expandWidth 1s ease-out 0.8s both;
  border-radius: 2px;
}

/* Hero CTA */
.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: slideUp 1s ease-out 1s both;
}

.hero-btn {
  padding: 1.3rem 3.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-btn > a {
  color: white;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #007f5f 0%, #00a878 100%);
  color: #ffffff;
  box-shadow: 0 15px 50px rgba(0, 127, 95, 0.35);
}

.hero-btn-primary:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 25px 70px rgba(0, 127, 95, 0.5);
}

.hero-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #ffffff;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
  background: #ffffff;
  color: #007f5f;
  transform: scale(1.05);
}

.hero-btn-secondary > a:hover {
  color: #007f5f;
}

/* ===================== CURRENT PROJECTS SECTION ===================== */

.current-projects-banner {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.current-projects-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 600px;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 127, 95, 0.05) 0%,
    transparent 60%
  );
  z-index: 0;
}

.banner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #007f5f 0%, #014f43 100%);
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 25px rgba(0, 127, 95, 0.2);
  animation: slideDown 0.8s ease-out;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #007f5f 0%, #014f43 100%);
  color: #ffd700;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 127, 95, 0.2);
}

.banner-content {
  animation: fadeInUp 1s ease-out;
}

.banner-content h2 {
  font-size: 3.8rem;
  font-weight: 900;
  color: #014f43;
  margin-bottom: 0.8rem;
  line-height: 1.15;
  animation: slideUp 1s ease-out 0.2s both;
}

.banner-subtitle {
  font-size: 1.3rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: slideUp 1s ease-out 0.3s both;
}

.banner-visual {
  position: relative;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  animation: slideUp 1s ease-out 0.4s both;
  box-shadow: 0 30px 80px rgba(0, 127, 95, 0.15);
  border: 1px solid rgba(0, 127, 95, 0.1);
}

.banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner-visual:hover img {
  transform: scale(1.15) skewY(2deg);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 127, 95, 0) 0%,
    rgba(1, 79, 67, 0.25) 100%
  );
  z-index: 2;
}

/* Current Project Card */
.current-project-card {
  background: white;
  border-radius: 25px;
  padding: 3.5rem;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 20px 70px rgba(0, 127, 95, 0.1);
  border: 2px solid rgba(0, 127, 95, 0.08);
  position: relative;
  animation: slideUp 1s ease-out 0.5s both;
}

.cp-content h3 {
  font-size: 2.3rem;
  font-weight: 900;
  color: #014f43;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cp-scope {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.cp-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.cp-info-item {
  display: flex;
  gap: 1.5rem;
}

.cp-info-item i {
  font-size: 2rem;
  color: #007f5f;
  flex-shrink: 0;
}

.cp-info-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #014f43;
  margin-bottom: 0.3rem;
}

.cp-info-item p {
  color: #666;
  font-size: 0.98rem;
}

/* ===================== PROJECTS GRID SECTION ===================== */

.projects-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 50%, #f5f8fa 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeInUp 1s ease-out;
}

.section-header h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: #014f43;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.projects-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

/* ===================== PROJECT ITEMS - NEW DESIGN ===================== */

.project-item {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 127, 95, 0.08);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 550px;
  border: 1px solid rgba(0, 127, 95, 0.06);
  animation: fadeInUp 0.8s ease-out both;
  position: relative;
}

.project-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007f5f 0%, #ffd700 100%);
  z-index: 10;
}

.project-item-1 {
  animation-delay: 0.1s;
}
.project-item-2 {
  animation-delay: 0.15s;
}
.project-item-3 {
  animation-delay: 0.2s;
}
.project-item-4 {
  animation-delay: 0.25s;
}
.project-item-5 {
  animation-delay: 0.3s;
}
.project-item-6 {
  animation-delay: 0.35s;
}
.project-item-7 {
  animation-delay: 0.1s;
}
.project-item-8 {
  animation-delay: 0.15s;
}
.project-item-9 {
  animation-delay: 0.2s;
}
.project-item-10 {
  animation-delay: 0.25s;
}
.project-item-11 {
  animation-delay: 0.3s;
}
.project-item-12 {
  animation-delay: 0.35s;
}
.project-item-13 {
  animation-delay: 0.1s;
}
.project-item-14 {
  animation-delay: 0.15s;
}
.project-item-15 {
  animation-delay: 0.2s;
}
.project-item-16 {
  animation-delay: 0.25s;
}
.project-item-17 {
  animation-delay: 0.3s;
}
.project-item-18 {
  animation-delay: 0.35s;
}
.project-item-19 {
  animation-delay: 0.1s;
}
.project-item-20 {
  animation-delay: 0.15s;
}
.project-item-21 {
  animation-delay: 0.2s;
}
.project-item-22 {
  animation-delay: 0.25s;
}

.project-item:hover {
  transform: translateY(-25px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0, 127, 95, 0.18);
  border-color: rgba(0, 127, 95, 0.15);
}

.project-image-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #007f5f 0%, #014f43 100%);
  flex-shrink: 0;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 127, 95, 0) 0%,
    rgba(1, 79, 67, 0.15) 100%
  );
  transition: all 0.6s ease;
  z-index: 2;
}

.project-item:hover .project-image-wrapper img {
  transform: scale(1.2) rotate(3deg) skewX(-2deg);
  filter: brightness(1.15);
}

.project-item:hover .project-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 127, 95, 0.2) 0%,
    rgba(1, 79, 67, 0.4) 100%
  );
}

.project-number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 65px;
  height: 65px;
  background: linear-gradient(
    135deg,
    rgba(0, 127, 95, 0.95) 0%,
    rgba(1, 79, 67, 0.85) 100%
  );
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  z-index: 5;
  box-shadow: 0 12px 35px rgba(0, 127, 95, 0.35);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.project-item:hover .project-number {
  transform: scale(1.2) rotate(-15deg) translateX(8px);
  box-shadow: 0 20px 50px rgba(0, 127, 95, 0.45);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #007f5f;
}

/* ===================== PROJECT BODY ===================== */

.project-body {
  padding: 2.2rem 2rem;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  min-height: 0;
}

.project-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #014f43;
  line-height: 1.35;
  margin: 0;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.project-item:hover .project-body h3 {
  color: #007f5f;
  transform: translateX(6px);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #777;
  transition: all 0.3s ease;
}

.meta-item i {
  color: #007f5f;
  font-size: 1rem;
  width: 20px;
}

.project-item:hover .meta-item {
  color: #014f43;
  padding-left: 0.8rem;
}

.project-desc {
  font-size: 0.95rem;
  color: #666;
  font-weight: 600;
  padding: 0.8rem 0;
  border-top: 2px solid #f2f2f2;
  border-bottom: 2px solid #f2f2f2;
  flex-shrink: 0;
  line-height: 1.6;
}

.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.detail label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #007f5f;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.detail p {
  font-size: 0.93rem;
  color: #333;
  font-weight: 700;
  margin: 0;
}

/* ===================== CTA SECTION ===================== */

.projects-cta {
  background: linear-gradient(
    135deg,
    #0a1628 0%,
    #1a2d45 35%,
    #007f5f 70%,
    #005643 100%
  );
  padding: 8rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.projects-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.projects-cta::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 127, 95, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.projects-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.projects-cta-content h2 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.projects-cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3.5rem;
  opacity: 0.95;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

.cta-button {
  background: linear-gradient(135deg, #007f5f 0%, #00a878 100%);
  color: #ffffff;
  border: none;
  padding: 1.5rem 4.5rem;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 18px 50px rgba(0, 127, 95, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-100%, -100%) rotate(45deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(45deg);
  }
}

.cta-button:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 30px 80px rgba(0, 127, 95, 0.45);
  background: linear-gradient(135deg, #00a878 0%, #00d494 100%);
}

.cta-button a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

/* ===================== ANIMATIONS ===================== */

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 200px;
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(50px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===================== RESPONSIVE DESIGN ===================== */

@media (max-width: 1024px) {
  .projects-hero {
    min-height: 700px;
    margin-top: 160px;
  }

  .projects-hero-title {
    font-size: 4rem;
  }

  .hero-subtitle-main {
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: 2.5rem;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .banner-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .banner-visual {
    height: 350px;
  }

  .current-project-card {
    padding: 2.5rem;
  }

  .cp-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .projects-cta-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .projects-hero {
    min-height: 600px;
    margin-top: 150px;
    padding: 2rem;
  }

  .projects-hero-title {
    font-size: 3rem;
  }

  .hero-subtitle-main {
    font-size: 1.25rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .banner-content h2 {
    font-size: 2.5rem;
  }

  .current-project-card {
    padding: 2rem;
  }

  .projects-section {
    padding: 4rem 1.5rem;
  }

  .projects-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .project-item {
    min-height: 520px;
  }

  .projects-cta {
    padding: 5rem 1.5rem;
  }

  .projects-cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 1.2rem 3rem;
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .projects-hero {
    min-height: 500px;
    margin-top: 140px;
    padding: 1.5rem;
  }

  .projects-hero-title {
    font-size: 2.2rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-subtitle-main {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }

  .current-projects-banner {
    padding: 2.5rem 1rem;
  }

  .banner-content h2 {
    font-size: 1.8rem;
  }

  .banner-visual {
    height: 250px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .projects-container {
    gap: 2rem;
  }

  .project-item {
    min-height: 500px;
  }

  .project-number {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .project-body {
    padding: 1.5rem 1.2rem;
  }

  .project-body h3 {
    font-size: 1.15rem;
  }

  .projects-cta {
    padding: 3rem 1rem;
  }

  .projects-cta-content h2 {
    font-size: 2rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .projects-hero-title {
    font-size: 1.9rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .banner-content h2 {
    font-size: 1.5rem;
  }

  .projects-cta-content h2 {
    font-size: 1.8rem;
  }
}
