html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

:root {
  --bg-dark: #121212;
  --bg-card: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #f4b400;
  --accent-hover: #d49b00;

  --container-width: 1200px;
  --nav-height: 80px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.main-header {
  background-color: rgba(18, 18, 18, 0.95);
  height: var(--nav-height);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo::before {
  content: "\f084";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  font-size: 1.6rem;
  color: var(--accent);
  transform: rotate(-45deg);

  text-shadow: 0 2px 10px rgba(244, 180, 0, 0.3);
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
    url("/assets/images/hero-bg.jpg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  position: relative;
  min-height: 90vh;
  height: auto;
  display: flex;
  align-items: center;

  padding-top: var(--nav-height);
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.badge {
  background-color: rgba(244, 180, 0, 0.2);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid var(--accent);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-accent {
  color: var(--accent);
}

.hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: #000;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--accent);
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-card);
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.main-footer {
  background-color: #0a0a0a;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.footer-col a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.mt-20 {
  margin-top: 20px;
}

.footer-bottom {
  background-color: #000;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #555;
}

.mobile-toggle {
  display: none;
}

.bg-darker {
  background-color: #0d0d0d;
}

.map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  display: block;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--bg-card);
  padding: 25px;
  border-radius: 8px;
  max-width: 300px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.map-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.text-accent {
  color: var(--accent);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}
.mt-10 {
  margin-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  padding: 25px;
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.faq-item h4 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;

  animation: pulse 2s infinite;
}

.float-wa:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.map-container {
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
}

.map-card {
  position: absolute;
  z-index: 20;
}

@media (max-width: 768px) {
  .map-card {
    position: relative;
    z-index: 20;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item:hover video {
  transform: none;
  filter: none;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(70%);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.video-item .video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(244, 180, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.video-item:hover .video-overlay {
  background-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
