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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
}

/* Scroll offset for fixed header */
section[id] {
  scroll-margin-top: 120px;
}

footer[id] {
  scroll-margin-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #2c2c2c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Navigation */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 80px;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 300;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #4a90e2;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.navigation::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(92, 64, 51, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: -1;
}

@media (max-width: 768px) {
  .navigation.active::before {
    opacity: 1;
    visibility: visible;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-image: url("images/IMG-20251130-WA0062.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(92, 64, 51, 0.4) 0%,
    rgba(213, 200, 193, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  margin: 0 20px;
  animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.7;
  color: #5c4033;
  font-style: italic;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #4a90e2;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #357abd;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #333;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #555;
  transform: translateY(-2px);
}

/* Two Column Section */
.two-column-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.column-left h2 {
  font-size: 42px;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

.column-left p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.8;
}

.column-left .btn {
  margin-top: 20px;
}

.column-right img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  position: relative;
  padding-bottom: 80px;
}

.services-bow {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.services-bow svg {
  display: block;
  width: 100%;
  height: 100px;
}

.services-background {
  background: linear-gradient(180deg, #d5c8c1 0%, #e8e2de 100%);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 44px;
  margin-bottom: 60px;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #5c4033;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #5c4033, #a08070);
  margin: 20px auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  text-align: left;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
}

.service-item h3 {
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #5c4033;
  white-space: nowrap;
}

.service-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #555;
  font-size: 14px;
}

.service-item ul li:last-child {
  border-bottom: none;
}

.service-item ul li strong {
  color: #5c4033;
  font-weight: 600;
}

/* Feature Sections */
.feature-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.feature-section.feature-alt {
  background-color: #f9f7f5;
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-content.feature-reverse {
  flex-direction: row-reverse;
}

.feature-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #d5c8c1 0%, #e8e2de 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(92, 64, 51, 0.15);
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  color: #5c4033;
}

.feature-text h2 {
  font-size: 32px;
  color: #5c4033;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.feature-text p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.feature-text p:last-child {
  margin-bottom: 0;
}

.feature-highlight {
  background: linear-gradient(135deg, #d5c8c1 0%, #e8e2de 100%);
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 4px solid #5c4033;
  color: #5c4033 !important;
  font-weight: 500;
}

.feature-product-image {
  margin: 25px 0;
  text-align: center;
}

.feature-product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.feature-image {
  flex-shrink: 0;
  max-width: 300px;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9f7f5 0%, #e8e2de 100%);
}

.testimonial-section .container {
  position: relative;
  max-width: 800px;
}

.testimonial-section h2 {
  text-align: center;
  font-size: 38px;
  color: #5c4033;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.testimonial-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5c4033, #a08070);
  margin: 15px auto 0;
  border-radius: 2px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(92, 64, 51, 0.1);
  text-align: center;
}

.testimonial-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.testimonial-text blockquote {
  position: relative;
  padding: 0;
}

.testimonial-text blockquote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: #d5c8c1;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-text blockquote p {
  font-size: 20px;
  font-style: italic;
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
  padding-top: 40px;
}

.testimonial-text footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.testimonial-text footer strong {
  font-size: 18px;
  color: #5c4033;
  font-weight: 600;
}

.testimonial-text footer span {
  font-size: 14px;
  color: #999;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #5c4033;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #5c4033;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(92, 64, 51, 0.3);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

/* Slider Dots */
.slider-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #d5c8c1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: #a08070;
}

.dot.active {
  background-color: #5c4033;
  width: 12px;
  height: 12px;
}

/* Footer */
.footer {
  background-color: #5c4033;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #d5c8c1, #a08070);
  border-radius: 2px;
}

.footer-column p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link span {
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust scroll offset for smaller header */
  section[id] {
    scroll-margin-top: 100px;
  }

  footer[id] {
    scroll-margin-top: 100px;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
  }

  .logo img {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle span {
    background-color: #5c4033;
  }

  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #f9f7f5 0%, #e8e2de 100%);
    box-shadow: -10px 0 40px rgba(92, 64, 51, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding-top: 100px;
  }

  .navigation.active {
    right: 0;
  }

  .navigation ul {
    flex-direction: column;
    gap: 0;
    text-align: left;
    padding: 0 25px;
  }

  .navigation li {
    border-bottom: 1px solid rgba(92, 64, 51, 0.1);
  }

  .navigation li:last-child {
    border-bottom: none;
  }

  .navigation a {
    display: block;
    padding: 18px 15px;
    font-size: 16px;
    color: #5c4033;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px 0;
  }

  .navigation a:hover {
    background: rgba(92, 64, 51, 0.1);
    color: #5c4033;
    padding-left: 20px;
  }

  .hero {
    height: auto;
    min-height: 500px;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content {
    padding: 30px 25px;
    margin: 0 15px;
  }

  .hero-content h2 {
    font-size: 20px;
    line-height: 1.6;
  }

  .two-column-section {
    padding: 60px 0;
  }

  .two-column-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .column-left h2 {
    font-size: 32px;
  }

  .column-left p {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .services-background {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-item {
    padding: 25px;
  }

  .service-item h3 {
    white-space: normal;
    font-size: 18px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .testimonial-content {
    padding: 30px 25px;
  }

  .testimonial-text blockquote::before {
    font-size: 60px;
    top: -20px;
  }

  .testimonial-text blockquote p {
    font-size: 17px;
    padding-top: 30px;
  }

  .footer {
    padding: 60px 0 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-section {
    padding: 60px 0;
  }

  .feature-content,
  .feature-content.feature-reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .feature-icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-text h2 {
    font-size: 26px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .feature-highlight {
    text-align: left;
  }

  .feature-product-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  section[id] {
    scroll-margin-top: 90px;
  }

  footer[id] {
    scroll-margin-top: 90px;
  }

  .logo img {
    height: 50px;
  }

  .hero {
    min-height: 400px;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content h2 {
    font-size: 16px;
  }

  .hero-content {
    padding: 25px 20px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .service-item {
    padding: 20px;
  }

  .service-item img {
    height: 180px;
  }

  .service-item h3 {
    font-size: 16px;
  }

  .feature-text h2 {
    font-size: 22px;
  }

  .feature-text p {
    font-size: 15px;
  }

  .testimonial-section h2 {
    font-size: 26px;
  }

  .testimonial-text blockquote p {
    font-size: 15px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column p {
    font-size: 14px;
  }
}
