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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #1f2933;
  background: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0, 24, 34, 0.42), rgba(0, 24, 34, 0.42)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  padding: 24px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(15, 38, 48, 0.45);
  padding: 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-links a {
  font-size: 15px;
  opacity: 0.95;
  color: white;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  background: white;
  color: #0f2630;
  border-color: white;
}

.hero-content {
  max-width: 720px;
  background: rgba(15, 38, 48, 0.36);
  padding: 34px;
  border-radius: 18px;
  backdrop-filter: blur(3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.small-title,
.section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
  color: #b9975b;
  font-weight: bold;
}

.hero .small-title {
  color: #f4d28a;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 20px;
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.2s ease;
}

.primary {
  background: #b9975b;
  color: white;
}

.primary:hover {
  background: #9d7d46;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background: white;
  color: #0f2630;
}

.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: auto;
  scroll-margin-top: 30px;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: #0f2630;
}

.section p {
  font-size: 18px;
  max-width: 800px;
  margin-bottom: 16px;
}

.about-section {
  max-width: 1200px;
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.about-image-wrap {
  width: 100%;
}

.about-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 38, 48, 0.18);
}

.about-content p {
  color: #374151;
}

.light {
  background: #f5f1ea;
  max-width: none;
}

.section-inner {
  max-width: 1100px;
  margin: auto;
}

.light .btn {
  margin-top: 10px;
}

.testimonials-section {
  text-align: center;
}

.testimonials-section h2 {
  margin-bottom: 34px;
}

.testimonials-section .section-label {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 18px;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
}

.testimonial-window {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}

.testimonial-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #f5f1ea;
  border-radius: 14px;
  padding: 46px 40px;
  box-shadow: 0 16px 35px rgba(15, 38, 48, 0.12);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-size: 22px;
  color: #243746;
  max-width: 720px;
  margin: 0 auto 22px;
}

.testimonial-name {
  font-size: 16px;
  color: #b9975b;
  font-weight: bold;
  margin-bottom: 0;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #0f2630;
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: 0.2s ease;
}

.slider-arrow:hover {
  background: #b9975b;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 11px;
  height: 11px;
  border: none;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
}

.active-dot {
  background: #b9975b;
}

.contact a {
  color: #b9975b;
  font-weight: bold;
}

.contact-box {
  margin-top: 24px;
  padding: 30px;
  background: #f5f1ea;
  border-radius: 12px;
  max-width: 760px;
}

.contact-box p {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 24px;
  background: #0f2630;
  color: white;
}

footer p {
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 420px;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .left-arrow {
    order: 2;
  }

  .testimonial-window {
    order: 1;
  }

  .right-arrow {
    order: 3;
  }

  .slider-arrow {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    margin-bottom: 80px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 18px;
    padding: 10px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 9px 14px;
  }

  .logo-img {
    height: 58px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-content {
    padding: 26px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 32px;
  }

  .section p {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 34px 24px;
  }

  .testimonial-text {
    font-size: 18px;
  }
}