* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #daf5d7, #e8f9e8);
  color: #2e453d;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #a8dba8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2e453d;
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.site-nav ul.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 20px;
  background: rgba(232, 249, 232, 0.95);
  padding: 10px;
  border-radius: 8px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #2e453d;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.site-nav ul li a.active,
.site-nav ul li a:hover {
  color: #6abf69;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #2e453d;
  border-radius: 2px;
}

html {
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      rgba(234, 249, 234, 0.8),
      rgba(210, 245, 215, 0.8)
    ),
    url("../assets/images/hero.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #eff3f2;
  top: 50%;
  transform: translateY(-50%);
}

.animated-text {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation-delay: 0.5s;
}

.btn-hero {
  display: inline-block;
  background: linear-gradient(90deg, #b8e6b8, #a8dba8);
  color: #2e453d;
  padding: 12px 30px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  transition: opacity 0.3s ease;
  animation-delay: 1s;
}

.btn-hero:hover {
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.philosophy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f9e8, #daf5d7);
}

.philosophy-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 20px;
}

.philosophy-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #4a6354;
  font-size: 1rem;
  text-align: center;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.philo-card {
  background: linear-gradient(145deg, #f0f9f0, #daf5d7);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.philo-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #e0f5e0, #c0e5c0);
}

.philo-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.philo-card h3 {
  font-size: 1.2rem;
  color: #2e453d;
  margin-bottom: 10px;
}

.philo-card p {
  font-size: 1rem;
  color: #4a6354;
  line-height: 1.6;
}

.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #daf5d7, #e8f9e8);
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, #f0f9f0, #daf5d7);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #e0f5e0, #c0e5c0);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2e453d;
  margin: 20px 0 10px;
}

.service-card p {
  color: #4a6354;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.projects-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f9e8, #daf5d7);
}

.projects-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(234, 249, 234, 0.85);
  color: #2e453d;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.project-link {
  font-size: 0.9rem;
  color: #6abf69;
  text-decoration: underline;
  cursor: pointer;
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #daf5d7, #e8f9e8);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(145deg, #f0f9f0, #daf5d7);
  border-radius: 16px;
  padding: 25px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #e0f5e0, #c0e5c0);
}

.testimonial-card p {
  font-style: italic;
  color: #4a6354;
  margin-bottom: 15px;
}

.testimonial-card strong {
  color: #2e453d;
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f9e8, #daf5d7);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1rem;
  color: #4a6354;
}

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 30px;
  height: 30px;
}

.contact-item a {
  color: #2e453d;
  text-decoration: none;
  font-weight: 500;
}

.site-footer {
  background: linear-gradient(90deg, #7cbf82, #a8dba8);
  padding: 20px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #2e453d;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .bar {
  color: #2e453d;
}

.site-footer p {
  font-size: 0.9rem;
  color: #2e453d;
  margin: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #a8dba8, #7cbf82);
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(232, 249, 232, 0.95);
    padding: 10px;
    border-radius: 8px;
    flex-direction: column;
  }

  .site-nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .philosophy-grid,
  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-details {
    flex-direction: column;
    gap: 20px;
  }
}

.designer-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f9e8, #daf5d7);
}

.designer-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.designer-text {
  flex: 1 1 400px;
  color: #2e453d;
}

.designer-text h2 {
  font-size: 2rem;
  color: #01579b;
  margin-bottom: 20px;
  position: relative;
}

.designer-text h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #6abf69;
  margin-top: 10px;
  border-radius: 2px;
}

.designer-text p {
  font-size: 1rem;
  color: #4a6354;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.designer-text blockquote {
  font-style: italic;
  color: #01579b;
  border-left: 4px solid #6abf69;
  padding-left: 16px;
  margin: 20px 0;
}

.designer-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.designer-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #4a6354;
}

.designer-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #6abf69;
  font-size: 1.2rem;
  line-height: 1;
}

.designer-photo-wrapper {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.designer-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  object-fit: cover;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .designer-inner {
    flex-direction: column;
    text-align: center;
  }

  .designer-text {
    flex: 1 1 auto;
  }

  .designer-photo-wrapper {
    margin-top: 30px;
  }
}

.works-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #eafaf0, #d1f2db);
  position: relative;
}

.works-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #2e453d;
  margin-bottom: 40px;
  position: relative;
}

.works-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #a3e4a9, #7dc57d);
  margin: 10px auto 0;
  border-radius: 2px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.work-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(161, 226, 164, 0.85),
    rgba(125, 197, 125, 0.85)
  );
  color: #ffffff;
  opacity: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
}

.work-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1rem;
  line-height: 1.5;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #2e453d;
  opacity: 0.7;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, 10px);
  }
}

.title_background {
  background: linear-gradient(90deg, #7cbf82, #a8dba8);
  padding: 60px 0;
}

.title_background .container {
  display: flex;
  justify-content: center;
}

.title_background .title {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: slideIn 1s forwards;
}

.text_background {
  background-color: #f0faf0;
  padding: 40px 0;
}

.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}

.text_background .text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #2e453d;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}