:root {
  --jg-dark: #0a0a0a;
  --jg-darker: #050505;
  --jg-card: #141414;
  --jg-border: rgba(255, 255, 255, 0.08);
  --jg-gold: #c9a227;
  --jg-gold-light: #e8c547;
  --jg-gold-dark: #a8861f;
  --jg-text: #f5f5f5;
  --jg-muted: #a0a0a0;
  --jg-overlay: rgba(0, 0, 0, 0.65);
  --jg-nav-height: 80px;
  --jg-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--jg-dark);
  color: var(--jg-text);
  overflow-x: hidden;
}

::selection {
  background: var(--jg-gold);
  color: var(--jg-dark);
}

/* ── Navbar ── */
.navbar-jg {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--jg-border);
  padding: 0.75rem 0;
  transition: var(--jg-transition);
}

.navbar-jg.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--jg-gold);
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--jg-text);
}

.navbar-jg .nav-link {
  color: var(--jg-muted) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  transition: color var(--jg-transition);
}

.navbar-jg .nav-link:hover,
.navbar-jg .nav-link.active {
  color: var(--jg-gold) !important;
}

.navbar-jg .dropdown-menu {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.navbar-jg .dropdown-item {
  color: var(--jg-muted);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  transition: all var(--jg-transition);
}

.navbar-jg .dropdown-item:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--jg-gold);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--jg-gold), var(--jg-gold-dark));
  color: var(--jg-dark) !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.55rem 1.4rem !important;
  border: none;
  transition: transform var(--jg-transition), box-shadow var(--jg-transition);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
  color: var(--jg-dark) !important;
}

.navbar-toggler {
  border-color: var(--jg-border);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero Carousel ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--jg-nav-height));
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: 100vh;
}

.hero-slide {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--jg-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--jg-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons .btn {
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--jg-gold), var(--jg-gold-dark));
  color: var(--jg-dark);
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--jg-gold-light), var(--jg-gold));
  color: var(--jg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--jg-text);
  background: transparent;
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--jg-gold);
  color: var(--jg-gold);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: var(--jg-transition);
}

.hero-section .carousel-control-prev { left: 2rem; }
.hero-section .carousel-control-next { right: 2rem; }

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  opacity: 1;
  background: rgba(201, 162, 39, 0.3);
}

.hero-section .carousel-indicators {
  bottom: 2rem;
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
}

.hero-section .carousel-indicators button.active {
  background: var(--jg-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--jg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  display: block;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  color: var(--jg-gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Common ── */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title .subtitle {
  color: var(--jg-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--jg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-title .dot {
  color: var(--jg-gold);
}

/* ── Features ── */
.features-section {
  background: var(--jg-darker);
}

.feature-card {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: var(--jg-transition);
  text-align: center;
}

.feature-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--jg-gold);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--jg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Services ── */
.services-section {
  background: var(--jg-dark);
}

.service-card {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: var(--jg-transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0a0a0a;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--jg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card .btn-link {
  color: var(--jg-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--jg-transition);
}

.service-card .btn-link:hover {
  gap: 0.75rem;
  color: var(--jg-gold-light);
}

/* ── Promo Banner ── */
.promo-banner {
  background: linear-gradient(135deg, var(--jg-gold-dark), var(--jg-gold), var(--jg-gold-light));
  padding: 3rem 0;
  text-align: center;
}

.promo-banner h3 {
  color: var(--jg-dark);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.promo-banner p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
}

.promo-banner .btn {
  background: var(--jg-dark);
  color: var(--jg-gold);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
}

.promo-banner .btn:hover {
  background: var(--jg-darker);
  transform: translateY(-2px);
}

/* ── Stats ── */
.stats-section {
  background: var(--jg-darker);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--jg-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--jg-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── About ── */
.about-section {
  background: var(--jg-dark);
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0a0a0a;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--jg-gold);
  border-radius: 16px;
  transform: translate(15px, 15px);
  pointer-events: none;
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--jg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  padding: 0.5rem 0;
  color: var(--jg-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-list li i {
  color: var(--jg-gold);
}

/* ── Gallery ── */
.gallery-section {
  background: var(--jg-darker);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "\f16d";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  opacity: 0;
  transition: opacity var(--jg-transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ── Contact ── */
.contact-section {
  background: var(--jg-dark);
}

.contact-form {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--jg-darker);
  border: 1px solid var(--jg-border);
  color: var(--jg-text);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: var(--jg-darker);
  border-color: var(--jg-gold);
  color: var(--jg-text);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-form .form-control::placeholder {
  color: var(--jg-muted);
}

.contact-form .form-select option {
  background: var(--jg-card);
}

.contact-info-card {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jg-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--jg-muted);
  font-size: 0.9rem;
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}

.contact-info-item a:hover {
  color: var(--jg-gold);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--jg-border);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

/* ── FAQ ── */
.faq-section {
  background: var(--jg-darker);
}

.accordion-jg .accordion-item {
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-jg .accordion-button {
  background: var(--jg-card);
  color: var(--jg-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
}

.accordion-jg .accordion-button:not(.collapsed) {
  background: rgba(201, 162, 39, 0.08);
  color: var(--jg-gold);
}

.accordion-jg .accordion-button::after {
  filter: invert(1);
}

.accordion-jg .accordion-body {
  color: var(--jg-muted);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
}

/* ── Footer ── */
.footer {
  background: var(--jg-darker);
  border-top: 1px solid var(--jg-border);
  padding: 4rem 0 2rem;
}

.footer-brand img {
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--jg-gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--jg-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--jg-gold);
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--jg-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--jg-transition);
}

.footer-links a:hover {
  color: var(--jg-gold);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--jg-card);
  border: 1px solid var(--jg-border);
  border-radius: 50%;
  color: var(--jg-muted);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  transition: all var(--jg-transition);
}

.footer-social a:hover {
  background: var(--jg-gold);
  color: var(--jg-dark);
  border-color: var(--jg-gold);
}

.footer-bottom {
  border-top: 1px solid var(--jg-border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--jg-muted);
  font-size: 0.8rem;
}

/* ── Floating Action Buttons ── */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--jg-transition), box-shadow var(--jg-transition);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
  color: white;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.whatsapp:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.floating-btn.phone {
  background: var(--jg-gold);
  color: var(--jg-dark);
}

.floating-btn.phone:hover {
  box-shadow: 0 6px 30px rgba(201, 162, 39, 0.5);
  color: var(--jg-dark);
}

.floating-btn.instagram {
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.floating-btn.instagram .instagram-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.floating-btn.instagram:hover {
  box-shadow: 0 6px 30px rgba(214, 36, 159, 0.55);
}

.floating-btn .tooltip-label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--jg-card);
  color: var(--jg-text);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--jg-transition);
  border: 1px solid var(--jg-border);
}

.floating-btn:hover .tooltip-label {
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--jg-card);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid var(--jg-border);
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next {
    display: none;
  }

  .about-image::after {
    display: none;
  }

  .floating-btn .tooltip-label {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}
