* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f5f5f5;
    }

    /* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid #ddd;
  z-index: 9999;
}
header .logo img {
  width: 100px;
}
/* ================= NAV DESKTOP ================= */
header nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
header nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
/* BUTTON */
header .btn {
  background: #B8943E;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
/* ================= HAMBURGER ================= */
header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
header .hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  display: block;
  transition: 0.3s;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  header {
    padding: 0 20px;
    height: 70px;
  }
  header .logo img {
    width: 80px;
  }
  /* SHOW HAMBURGER */
  header .hamburger {
    display: flex;
  }
  /* MOBILE NAV */
  header nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
    display: none;
    border-top: 1px solid #ddd;
  }
  header nav.active {
    display: flex;
  }
  header nav a {
    font-size: 16px;
    width: 100%;
  }
  header .btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= UTILITY CLASSES ================= */
.text-center {
  text-align: center !important;
}

.margin-center {
  margin: 0 auto !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

/* ================= BODY OFFSET ================= */
body {
  padding-top: 80px;
}

.hero {
  color: #ffffff;
  background: #000000;
  margin: 0 auto;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-text h1 {
  font-size: 62px;
}

.hero-text h1 span {
  color: #AA7E19;
}

.hero-text p {
  font-size: 20px;
  line-height: 36px;
  margin-top: 20px;
  max-width: 660px;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .hero {
    height: 300px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 18px;
    line-height: 30px;
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  .hero {
    height: auto;
    padding: 40px 15px;
  }

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

  .hero-text p {
    font-size: 16px;
    line-height: 26px;
  }
}
/* ================= HERO SLIDER ================= */
.hero-slider {
  width: 100%;
  height: calc(100svh - 80px);
  overflow: hidden;
  position: relative;
}
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
}
.slide picture,
.slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.slide img {
  object-fit: cover;
}
/* ================= DOTS ================= */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50px;
  padding-left: 6px;
  border-radius: 10px;
  background: #B8943E;
}
.dots span {
  width: 10px;
  height: 10px;
  background: #fff;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.dots span.active {
  opacity: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  /* HERO */
  .hero-slider {
    height: calc(100svh - 70px);
  }
  .slide img {
    object-fit: initial;
  }
  /* DOTS CENTER */
  .dots {
    left: 50%;
    transform: translateX(-50%);
  }
}


.services {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.services a {
  color: #B8943E;
  text-decoration: underline;
  font-size: 14px;
}

.subtitle {
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}

/* CARD */
.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: left;
  transition: 0.3s;
  position: relative; 
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  border: 1px solid #aaa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-box i {
  color: #B8943E;
  font-size: 20px;
}

/* TEXT */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card a {
  color: #B8943E;
  text-decoration: none;
  font-weight: 500;
}

.card {
  transition: all 0.4s ease;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
  transition: all 0.3s ease;
}

.card:hover .icon-box {
  transform: rotate(8deg) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services h2 {
    font-size: 28px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #B8943E;
  padding: 80px 20px;
  text-align: center;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
/* TITLE */
.about-title {
  font-size: 48px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
}
/* IMAGE CARD */
.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-card img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
  display: block;
}
/* TEXT */
.about-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin: 30px auto;
  max-width: 900px;
}
/* BUTTON */
.about-btn {
  display: inline-block;
  background: #eaeaea;
  color: #B8943E;
  padding: 10px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.about-btn:hover {
  background: #fff;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
  .about-card {
    padding: 10px;
  }
  .about-text {
    font-size: 14px;
    padding: 0 10px;
  }
  .about-btn {
    padding: 10px 20px;
  }
}

.why-section {
  padding: 80px 20px;
  background: #ffffff;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT TEXT */
.why-text {
  flex: 1;
}

.why-text h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.why-text h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.bg-offwhite{
  background: #f5f5f5 !important;
}

.why-text h2 span {
  color: #B8943E;
}

.why-subtitle {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* POINTS */
.why-points {
  margin-bottom: 30px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.check {
  color: #B8943E;
  font-size: 18px;
  margin-top: 5px;
}

.point h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.point p {
  font-size: 14px;
  color: #555;
}

/* BUTTON */
.why-btn {
  text-decoration: none;
  color: #B8943E;
  font-weight: 500;
}

/* RIGHT BOX */
.why-image {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }

  .why-image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .why-text h2 {
    font-size: 26px;
  }
}

.success {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.success h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* GRID */
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.success-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.success-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.success-card h3 {
  font-size: 40px;
  color: #B8943E;
  margin-bottom: 10px;
}

.success-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.success-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .success h2 {
    font-size: 26px;
  }
}

/* CTA */
.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta p {
  color: #ccc;
  margin-bottom: 30px;
}

.cta-btn {
  background: #B8943E;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}


.contact-section {
  background: #e9e9e9;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.form-container {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.form-container h2 {
  text-align: center;
  color: #b08a3e;
  margin-bottom: 30px;
  font-size: 28px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
  margin-bottom: 25px;
}

label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

input,
textarea {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
}

textarea {
  height: 140px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 14px;
  background: #b08a3e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #9a7633;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-container {
    padding: 25px;
  }
}

.hours-section {
  background: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.hours-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #111;
}

/* Box */
.hours-box {
  max-width: 600px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Rows */
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  font-size: 16px;
}

.hours-row .left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.hours-row i {
  font-size: 18px;
  color: #B8943E;
}

.hours-row .right {
  color: #b08a3e;
  font-weight: 500;
}

/* Closed text */
.closed {
  color: #b08a3e;
}

/* Divider */
.divider {
  height: 1px;
  background: #ddd;
}

/* Responsive */
@media (max-width: 600px) {
  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .hours-row .right {
    align-self: flex-end;
  }
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h3 {
  color: #B8943E;
  margin-bottom: 10px;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #B8943E;
}

/* SOCIAL */
.social-icons a {
  margin-right: 10px;
  font-size: 26px;
  text-decoration: none;
  color: #ffffff;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta h2 {
    font-size: 26px;
  }
}

.ribbon-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
}

.ribbon-lines span {
  position: absolute;
  width: 20px;
  height: 150%;
  background: linear-gradient(180deg, transparent, rgb(255 165 0 / 66%), #B8943E85, rgb(255 165 0 / 29%), transparent);
  transform: rotate(30deg);
  animation: shineMove 3s linear infinite;
}

/* First line */
.ribbon-lines span:nth-child(1) {
  right: 40px;
  animation-delay: 0s;
}

/* Second line */
.ribbon-lines span:nth-child(2) {
  right: 80px;
  animation-delay: 1.5s;
}

/* Animation */
@keyframes shineMove {
  0% {
    top: -100%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}