* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  position: relative;
}

.logo img {
  height: 80px;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #d4a24c;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #d4a24c;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #b88938;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  display: block;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-container {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    justify-self: center;
  }

  .call-btn {
    justify-self: end;
    padding: 9px 12px;
    font-size: 13px;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    gap: 0;
    margin-left: 0;
    z-index: 998;
  }

  .nav-menu a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  .nav-menu.active {
    max-height: 500px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 44px;
  }

  .call-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .menu-toggle span {
    width: 22px;
  }
}

/* HERO */

.hero {
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  padding: 0 20px;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 10px;
}

.hero-btn {
  background: #d4a34f;
  color: #fff;
  border: none;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #b88732;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 14px 22px;
  }
}

/* SOCIAL SIDEBAR */

.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
}

.social-sidebar a {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-sidebar a:hover {
  padding-left: 10px;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: #e4405f;
}

.linkedin {
  background: #0077b5;
}

.youtube {
  background: #ff0000;
}

.tiktok {
  background: #000;
}

.email {
  background: #d4a34f;
}

@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* ABOUT */

.about-section {
  padding: 90px 0;
  background: #f7f7f7;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.about-content h2 {
  font-size: 34px;
  margin: 0 0 18px;
  line-height: 1.25;
  color: #111;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-btn {
  display: inline-block;
  background: #d4a34f;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* STATS */

.stats-section {
  background: #050505;
  padding: 90px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h2 {
  font-size: 58px;
  font-weight: 700;
  color: #d4a24c;
  margin: 0 0 10px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(212, 162, 76, 0.35);
}

.stat-box p {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box h2 {
    font-size: 46px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 60px 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-box h2 {
    font-size: 40px;
  }

  .stat-box p {
    font-size: 16px;
  }
}

/* SECTION TITLE */

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #222;
}

/* SERVICES */

.services {
  padding: 80px 0;
  background: #f8f9fb;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-box {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1));
}

.service-content {
  position: relative;
  color: white;
  padding: 20px;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .services-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-row {
    grid-template-columns: 1fr;
  }
}

/* WHY CHOOSE */

.why-choose {
  padding: 80px 0;
  background: #f8f9fb;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 40px 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 40px;
  color: #d4a24c;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* PARTNERS */

.partners {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll 25s linear infinite;
}

.logo-track img {
  height: 80px;
  width: auto;
  opacity: 0.85;
  transition: 0.3s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track img {
    height: 40px;
  }
}

/* CONTACT */

.contact-section {
  margin: 0;
  background: url("assets/contact.jpeg") center/cover no-repeat;
  padding: 120px 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.contact-form-box {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.contact-form-box h2 {
  margin-bottom: 10px;
  font-size: 30px;
  color: #111;
}

.contact-form-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  font-size: 14px;
  background: #fafafa;
  transition: 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4a24c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #d4a24c;
  color: white;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
}

.contact-form button:hover {
  background: #b88938;
  transform: translateY(-2px);
}

.form-status {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .contact-wrapper {
    justify-content: center;
  }

  .contact-form-box {
    max-width: 420px;
    padding: 28px 20px;
  }
}

/* FAQ */

.faq-section {
  margin: 0;
  padding: 80px 20px;
  background: #f5f6f7;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  text-align: left;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-icon {
  font-size: 20px;
  color: #d4a24c;
  transition: 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
  line-height: 1.6;
}

/* POPUP */

.simple-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.simple-popup.active {
  display: flex;
}

.simple-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.simple-popup-box {
  position: relative;
  z-index: 2;
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  padding: 24px 18px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  max-height: 90vh;
  overflow-y: auto;
}

.simple-popup-box h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #111;
}

.simple-popup-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.simple-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #111;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fafafa;
}

.simple-form input:focus,
.simple-form select:focus,
.simple-form textarea:focus {
  outline: none;
  border-color: #d4a24c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 162, 76, 0.1);
}

.simple-form textarea {
  min-height: 110px;
  resize: none;
}

.simple-form button {
  width: 100%;
  background: #d4a24c;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
}

.simple-form button:hover {
  background: #b88938;
}

@media (max-width: 576px) {
  .simple-popup {
    align-items: flex-end;
    padding: 0;
  }

  .simple-popup-box {
    max-width: 100%;
    width: 100%;
    border-radius: 18px 18px 0 0;
    padding: 22px 14px 16px;
    max-height: 85vh;
  }

  .simple-popup-box h3 {
    font-size: 24px;
  }

  .simple-popup-box p {
    font-size: 14px;
  }

  .simple-form input,
  .simple-form select,
  .simple-form textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .simple-form button {
    padding: 13px;
    font-size: 15px;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* FOOTER */

.footer {
  background: #111;
  color: white;
}

.footer-newsletter {
  text-align: center;
  padding: 60px 20px;
  background: #1a1a1a;
}

.footer-newsletter h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-newsletter p {
  color: #ccc;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  font-family: inherit;
}

.newsletter-form button {
  background: #d4a24c;
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-family: inherit;
}

.footer-main {
  padding: 60px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
}

.footer-links a:hover {
  color: white;
}

.footer-social a {
  color: white;
  margin-right: 12px;
  font-size: 18px;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact i {
  margin-right: 10px;
  color: #d4a24c;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  color: #aaa;
}

.designed {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
    justify-items: center;
  }

  .footer-logo {
    margin: auto;
    display: block;
    max-width: 160px;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
}

@media (max-width: 500px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    margin-top: 10px;
  }
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a;
}
