* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", serif;
  color: #2f3b35;
  font-size: 18px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 74px;
}

main {
  flex: 1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3.5rem;
  background: linear-gradient(
    180deg,
    rgba(59, 75, 66, 0.98) 0%,
    rgba(47, 59, 53, 0.98) 100%
  );
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
  opacity: 0.8;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

.logo-small {
  height: 42px;
  transition: transform 0.3s ease;
  filter: brightness(1.05);
}

.logo-small:hover {
  transform: scale(1.05);
}

.language-switch {
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn:hover img {
  transform: scale(1.1);
}

.lang-btn.active-lang {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.lang-btn.active-lang img {
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.nav-cta {
  background: linear-gradient(135deg, #d4af37 0%, #e5c14c 100%);
  color: #2f3b35;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.3);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5c14c 0%, #f0cc5c 100%);
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.nav-cta:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .navbar {
    padding: 0.8rem 2rem;
  }

  .nav-left {
    gap: 2.5rem;
  }

  .nav-links {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0.8rem 1.5rem;
  }

  .nav-left {
    gap: 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  .navbar {
    position: relative;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-left {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .nav-right {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .logo-small {
    height: 38px;
  }

  .language-switch {
    width: 100%;
    justify-content: center;
  }
}

/* Hero */
.hero {
  background: rgba(76, 103, 83, 0.95);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 6rem 2rem;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-hero {
  height: 317px;
  max-height: 30vh;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.hero-buttons {
  margin-top: 2rem;
}

.btn-primary {
  background-color: #d4af37;
  color: #2f3b35;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-size: 1rem;
  margin: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #f0e6c3;
}

/* Services */
.services {
  background-color: #e8f2ea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d4af37;
  margin: 10px auto 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.service-box {
  background-color: #ffffff;
  color: #2f3b35;
  padding: 2rem; /* groter */
  border-radius: 10px;
  min-width: 250px;
  max-width: 320px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box i {
  font-size: 40px;
  margin-bottom: 1rem;
  color: #4c6753;
}

/* Timeline */
.timeline-section {
  background-color: #f0f6f2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: #ccdacf;
  z-index: 0;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #4c6753;
  transition: height 0.6s ease-out;
  z-index: 1;
}

.timeline-step {
  width: 50%;
  padding: 20px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.timeline-step.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step.left {
  left: 0;
  text-align: right;
}

.timeline-step.right {
  left: 50%;
  text-align: left;
}

.timeline-step .content {
  background: #4c6753;
  color: white;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  max-width: 90%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.timeline-step.left .content::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -10px;
  border: 10px solid transparent;
  border-left-color: #4c6753;
}
.timeline-section h2 {
  text-align: center;
}
.timeline-step.right .content::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  border: 10px solid transparent;
  border-right-color: #4c6753;
}

.timeline-step .icon {
  font-size: 24px;
  color: #ccdacf;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .timeline-step,
  .timeline-step.left,
  .timeline-step.right {
    width: 100%;
    text-align: center;
    left: 0 !important;
  }

  .timeline-step .content::after {
    display: none;
  }

  .timeline-line {
    left: 20px;
    transform: none;
  }
}

/* Contact */
.contact {
  background-color: #e8f2ea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.contact button {
  background-color: #4c6753;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #3a5042;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #3b4b42 0%, #2f3b35 100%);
  color: white;
  padding: 4rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer-left,
.footer-right {
  flex: 1;
}

.footer-left h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.cta-section p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info i {
  color: #d4af37;
  font-size: 1.2rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #d4af37;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer {
    padding: 3rem 1.5rem 1rem;
  }

  .cta-section {
    text-align: center;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}
