/* Reset & Base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

/* Main Wrapper */
#main {
  width: 100%;
  overflow: hidden;
}/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;

}

:root {
      --bg: #f4f5f7;
      --text: #333;
      --primary: #2c3e50;
      --accent: #f39c12;
      --card-bg: #fff;
      --border: #e0e0e0;
      --radius: 12px;
      --transition: 0.3s ease;
    }

 
    .faq-container {
      max-width: 9000px;
      margin: auto;
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      padding: 40px;
    }

    h2 {
      font-size: 4rem;
      margin-bottom: 10px;
      color: #d4a94f;
      margin-top: 5%;
      text-align: center;
      align-items: center;
    }

    p.intro {
      margin-bottom: 10%;
      color: #555;
      font-size: 1.7rem;
        text-align: center;
      align-items: center;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      cursor: pointer;
      transition: background var(--transition);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1.6rem;
      color: var(--primary);
    }

    .faq-answer {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      font-size: 1.5rem;
      color: #444;
      padding-right: 10px;
      transition: max-height var(--transition), opacity var(--transition), padding var(--transition);
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      opacity: 1;
      padding-top: 10px;
    }

    .toggle-icon {
      font-size: 1.2rem;
      transition: transform var(--transition);
    }

    .faq-item.active .toggle-icon {
      transform: rotate(45deg);
      color: var(--accent);
    }

    .contact-note {
      margin-top: 40px;
      font-size: 0.9rem;
      text-align: center;
    }

    .contact-note a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
    }

    .contact-note a:hover {
      text-decoration: underline;
    }

    @media (max-width: 600px) {
      .faq-container {
        padding: 20px;
      }
    }

/* Navigation */
nav {
  padding: 2vw 4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
}

.logo {
  width: 120px;
  height: auto;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #ffffff3c;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffffd4;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #d4a94f;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
  z-index: 1;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #fff;
}

.btn-top {
  background-color: #d4a94f;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 3px;
}



/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4em;
  font-weight: bold;
  color: #d4a94f;
  margin: auto;
  line-height: 1.3;
}

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4a94f;
  padding: 15px 30px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}




/* Footer */
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

 .contact-container {
      display: flex;
      flex-wrap: wrap;
      min-height: 100vh;
    }

    .contact-left {
      flex: 1;
      background: url('https://plus.unsplash.com/premium_photo-1664304474148-2a1c02c75b13?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTU5fHx0YW56YW5pYXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
      color: white;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-left h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }

    .contact-left p {
      font-size: 1rem;
      opacity: 0.85;
    }

    .contact-info {
      margin-top: 40px;
      line-height: 1.6;
    }

    .contact-right {
      flex: 1;
      background: white;
      padding: 60px 40px;
      border-radius: 0 0 0 20px;
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .contact-right h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

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

    input, textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #ccc;
      border-radius: 999px;
      font-size: 1rem;
      outline: none;
      transition: 0.3s;
    }

    textarea {
      border-radius: 16px;
      resize: vertical;
      min-height: 100px;
    }

    input:focus, textarea:focus {
      border-color: #888;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .inquiry-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }

    .inquiry-buttons button {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      background: #f2f2f2;
      border-radius: 999px;
      cursor: pointer;
      transition: 0.3s;
    }

    .inquiry-buttons button:hover,
    .inquiry-buttons button.active {
      background: #222;
      color: #fff;
    }

    .form-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .form-footer input[type="checkbox"] {
      transform: scale(1.2);
    }

    button[type="submit"] {
      width: 100%;
      padding: 14px;
      background: black;
      color: white;
      border: none;
      border-radius: 999px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    button[type="submit"]:hover {
      background: #333;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }

      .contact-left, .contact-right {
        padding: 30px 20px;
      }

      .contact-right {
        border-radius: 0;
        box-shadow: none;
      }

      .form-row {
        flex-direction: column;
      }
    }

    
footer {
  background-color: #000;
  color: white;
  padding: 60px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
    color: white;

}

.footer-col ul li {
  padding: 6px 0;
  font-size: 15px;
    color: white;

}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: white;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}
footer a {
  color: #ffffff; /* or your brand color like #F4A261 or #E9C46A */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #F4A261; /* Example hover color */
  text-decoration: underline;
}