* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* HEADER */

.header {
  background: #111;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 25px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.navbar ul li a:hover {
  color: #E86800;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}


/* HERO SECTION */

.hero {
  background:
  linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
  url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1600&auto=format&fit=crop')
  center/cover no-repeat;

  min-height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #fff;

  padding: 80px 0;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero p {
  font-size: 22px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 35px;
}


/* BUTTONS */

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  background: #E86800;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  display: inline-block;
  font-weight: 600;
}

.btn:hover {
  background: #c55500;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.btn-dark-outline {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.btn-dark-outline:hover {
  background: #111;
  color: #fff;
}


/* SECTION */

.section {
  padding: 80px 0;
}

.bg-light {
  background: #f5f5f5;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  color: #111;
}


/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}


/* CARD */

.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card p {
  color: #555;
}

.small-btn {
  display: inline-block;
  margin-top: 15px;
  color: #E86800;
  text-decoration: none;
  font-weight: bold;
}


/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}


/* VIDEO */

.video-section {
  margin-top: 40px;
}

.video-section iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
}


/* CONTENT BUTTONS */

.content-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.content-buttons a {
  background: #111;
  color: #fff;
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.content-buttons a:hover {
  background: #E86800;
}


/* FAQ */

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
}

.faq-answer p {
  color: #555;
}


/* CONTACT PAGE */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}


/* SITEMAP */

.sitemap-links {
  list-style: none;
}

.sitemap-links li {
  margin-bottom: 12px;
}

.sitemap-links a {
  text-decoration: none;
  color: #E86800;
}


/* TEXT CONTENT */

.privacy-content h2 {
  margin-top: 35px;
  margin-bottom: 15px;
  color: #111;
}

.privacy-content p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}


/* FOOTER */

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.footer-logo {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer p {
  color: #ccc;
}

.footer-links {
  margin: 25px 0;
}

.footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #E86800;
}

.copyright {
  margin-top: 20px;
  color: #aaa;
  font-size: 15px;
}


/* RESPONSIVE */

@media(max-width: 992px) {

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 20px;
  }

}


/* MOBILE MENU FIX */

@media(max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 75px;
    right: 20px;
    width: 220px;
    background: #111;
    border-radius: 10px;
    padding: 20px;
    z-index: 999;
  }

  .navbar.active {
    display: block;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .navbar ul li {
    margin: 0;
  }

  .navbar ul li a {
    display: block;
    width: 100%;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .video-section iframe {
    height: 250px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 34px;
  }

}


@media(max-width: 480px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

}