/* ============================================
   HEADER / NAV
============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
  transform: translateY(-100%);
  overflow: visible;
}
#header.visible {
  transform: translateY(0);
}
#header.scrolled {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: auto; /* adapt to content */
  min-height: 4rem; /* ensure minimal height */
  overflow: visible;
}
@media (min-width: 640px) { .header-inner { min-height: 5rem; height: auto; } }

.logo {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-start;
  padding-top: 10px;
  transition: opacity 0.3s ease, padding-top 0.3s ease, max-height 0.3s ease;
}
/* Mobile: logo small to avoid overlapping hero */
.logo img {
  max-height: 120px;
  width: auto;
}
@media (min-width: 640px) {
  .logo {
    padding-top: 30px;

  }
  .logo img {
    max-height: 175px;
  }
}
@media (min-width: 1024px) {
  .logo {
    padding-top: 50px;
  }
  .logo img {
    max-height: var(--logo-height, 100%);
  }
}
#header.scrolled .logo {
  opacity: 0;
  pointer-events: none;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
}
.logo-icon { color: var(--gold); }
.logo-text { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.025em; }
.logo-subtitle {
  font-size: 10px;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 640px) { .logo-subtitle { display: block; } }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
  align-self: center;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: color 0.2s;
  color: var(--muted-foreground);
}
.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--gold); }

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  background: var(--gold);
  color: var(--background);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  align-self: center;
}
.mobile-menu-btn:hover { color: var(--foreground); }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
}
#mobile-menu.open { display: flex; }
#mobile-menu .mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  padding: 0.5rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
}
#mobile-menu .mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}
#mobile-menu .mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
#mobile-menu .mobile-nav-link:hover { color: var(--gold); }
#mobile-menu .mobile-nav-link.active { color: var(--gold); }
#mobile-menu .mobile-sublink {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  padding: 0.25rem 1rem;
  text-decoration: none;
}
#mobile-menu .mobile-sublink:hover { color: var(--gold); }
#mobile-menu .mobile-cta {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  background: var(--gold);
  color: var(--background);
  text-decoration: none;
  transition: background 0.2s;
}
#mobile-menu .mobile-cta:hover {
  background: var(--gold-light);
}

/* Dropdown CSS */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--surface);
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 100;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInDropdown 0.2s ease-in-out;
}
@keyframes fadeInDropdown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-content a {
  color: var(--muted-foreground);
  padding: 10px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.dropdown-content a:hover {
  background-color: var(--surface-light);
  color: var(--gold);
}
/* Subdropdown CSS */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .submenu-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: var(--surface);
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  padding: 0.5rem 0;
  margin-left: 2px;
  z-index: 101;
}
.dropdown-submenu:hover .submenu-content {
  display: block;
  animation: fadeInSub 0.2s ease-in-out;
}
@keyframes fadeInSub {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   HERO SECTION
============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,11,0.8) 0%,
    rgba(10,10,11,0.4) 30%,
    rgba(10,10,11,0.55) 60%,
    rgba(10,10,11,0.85) 100%
  );
}

.hero-line {
  position: absolute;
  top: 33.333%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  transform-origin: center;
  animation: none;
  transform: scaleX(0);
  transition: transform 1.5s ease 0.5s;
}
.hero-line.visible { transform: scaleX(1); }

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.hero-badge.visible { opacity: 1; transform: translateY(0); }
.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--gold);
}
.hero-badge span { font-size: 0.875rem; color: var(--gold); font-weight: 500; letter-spacing: 0.025em; }

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-title.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
}
.hero-subtitle.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}
.hero-buttons.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.375rem;
  background: var(--gold);
  color: var(--background);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.7s ease 1.2s;
}
.scroll-indicator.visible { opacity: 1; }
.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: scrollIndicator 1.5s ease infinite;
}

/* ============================================
   BRANDS SECTION
============================================ */
#brands {
  position: relative;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--surface);
  overflow: hidden;
  color: var(--foreground);
}

.brands-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .brands-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}

.brands-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.brands-title-wrapper p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-weight: 500;
}
.brands-title-line {
  width: 3rem;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 767px) {
  .brands-title-line {
    margin: 0 auto;
  }
}

.brand-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.brand-reviews:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .brand-reviews {
    margin-top: 0.5rem;
  }
}
@media (min-width: 640px) {
  .brand-reviews {
    padding: 0.5rem 1.25rem;
  }
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 1rem; height: 1rem; fill: var(--gold); color: var(--gold); }
.review-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}
.review-info span:first-child { font-size: 0.875rem; font-weight: 700; display: block; color: var(--foreground); }
.review-info .review-link-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}
.brand-reviews:hover .review-info .review-link-text {
  color: var(--foreground);
}
.review-info .arrow-icon {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s ease;
}
.brand-reviews:hover .arrow-icon {
  transform: translate(2px, -2px);
}

/* Carrusel / Marquee infinit */
.brands-marquee {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  padding: 1rem 0;
}

.brands-marquee::before,
.brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--surface) 0%, transparent 100%);
}
.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--surface) 0%, transparent 100%);
}

.brands-marquee-content {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.brands-marquee:hover .brands-marquee-content {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.brand-logo-img {
  width: auto;
  max-width: 256px;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1) brightness(1.05) saturate(1.1);
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============================================
   SERVICES SECTION
============================================ */
#services {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 640px) { #services { padding: 7rem 0; } }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .section-header { margin-bottom: 5rem; } }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-desc {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .section-desc { font-size: 1.125rem; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { gap: 2rem; } }

.service-card {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 0 30px rgba(201,168,76,0.05);
}

.service-img-wrap {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
@media (min-width: 640px) { .service-img-wrap { height: 14rem; } }

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.1); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, rgba(17,17,19,0.3) 60%, transparent 100%);
}

.service-icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(201,168,76,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.service-arrow-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(201,168,76,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow-badge { opacity: 1; transform: translateY(0); }

.service-body {
  padding: 1.5rem 2rem;
}
.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
@media (min-width: 640px) { .service-body h3 { font-size: 1.5rem; } }
.service-card:hover .service-body h3 { color: var(--gold); }
.service-body p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .service-body p { font-size: 1rem; } }

/* ============================================
   DIFFERENTIATORS SECTION
============================================ */
#differentiators {
  padding: 5rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { #differentiators { padding: 7rem 0; } }

#differentiators::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(201,168,76,0.05);
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}
#differentiators::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(201,168,76,0.03);
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .diff-grid { grid-template-columns: 1fr 1fr 1fr; } }

.diff-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  transition: border-color 0.5s;
}
.diff-card:hover { border-color: rgba(201,168,76,0.2); }

.diff-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.diff-card:hover .diff-icon { background: rgba(201,168,76,0.15); }

.diff-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.diff-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
@media (min-width: 640px) { .diff-card h3 { font-size: 1.5rem; } }
.diff-card:hover h3 { color: var(--gold); }

.diff-subtitle {
  font-size: 0.875rem;
  color: rgba(201,168,76,0.7);
  font-weight: 500;
  margin-bottom: 1rem;
}

.diff-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .diff-card p { font-size: 1rem; } }

.diff-bottom-line {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.diff-card:hover .diff-bottom-line { opacity: 1; }

.diff-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.diff-cta button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.diff-cta button:hover { color: var(--gold-light); }
.diff-cta button svg { transition: transform 0.2s; }
.diff-cta button:hover svg { transform: translateX(4px); }

/* ============================================
   PILLARS / AXES SECTION
============================================ */
#axes {
  padding: 5rem 0;
  position: relative;
}
@media (min-width: 640px) { #axes { padding: 7rem 0; } }

.axes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .axes-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 1024px) { .axes-grid { gap: 2rem; } }

.axis-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.5s;
}
.axis-card:hover { border-color: rgba(201,168,76,0.2); }

.axis-bg-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  user-select: none;
}

.axis-icon {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s;
}
.axis-card:hover .axis-icon { transform: scale(1.1); }

.axis-number {
  position: relative;
  z-index: 10;
  margin-bottom: 1rem;
}
.axis-number .big-num {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e4c06e, #c9a84c, #a07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
@media (min-width: 640px) { .axis-number .big-num { font-size: 3rem; } }
.axis-number .num-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.axis-card h3 {
  position: relative;
  z-index: 10;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
@media (min-width: 640px) { .axis-card h3 { font-size: 1.5rem; } }
.axis-card:hover h3 { color: var(--gold); }

.axis-card p {
  position: relative;
  z-index: 10;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .axis-card p { font-size: 1rem; } }

/* ============================================
   GALLERY SECTION (home-specific overrides)
============================================ */
#gallery {
  padding: 5rem 0;
  background: var(--surface);
}
@media (min-width: 640px) { #gallery { padding: 7rem 0; } }

/* ============================================
   BLOG SECTION
============================================ */
#blog {
  padding: 5rem 0;
}
@media (min-width: 640px) { #blog { padding: 7rem 0; } }

.blog-empty {
  text-align: center;
  padding: 3rem 0;
}
.blog-empty svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  color: rgba(250,250,249,0.2);
}
.blog-empty p { color: var(--muted-foreground); }

/* ============================================
   CONTACT / FOOTER SECTION
============================================ */
#contact {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-cta {
  text-align: center;
  padding: 3.5rem 0 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 640px) { .contact-cta { padding: 5rem 0; } }

.contact-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .contact-cta h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .contact-cta h2 { font-size: 3rem; } }

.contact-cta p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
  font-size: 1rem;
}
@media (min-width: 640px) { .contact-cta p { font-size: 1.125rem; } }

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .contact-buttons { flex-direction: row; } }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: #25D366;
  color: white;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20bf5b;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: 1fr 1fr 1fr; max-width: none; } }

.contact-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: rgba(201,168,76,0.2); }

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}
.contact-card a { color: var(--gold); }
.contact-card a:hover { color: var(--gold-light); }

/* Footer */
.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--surface-light);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold); }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-bottom p { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* WhatsApp Floating Button */
#whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 40;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  text-decoration: none;
}
#whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
#whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

/* Scroll to Top */
#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 5.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--surface-light);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  z-index: 40;
  cursor: pointer;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.3s;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* ============================================
   BLOG CARDS - HOME PAGE
============================================ */
.blog-home-card {
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.blog-home-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
}
.blog-home-card .blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1rem;
  transition: color 0.2s ease;
}
.blog-home-card:hover .blog-card-more {
  color: var(--gold-light);
}
.blog-home-card .blog-card-more svg {
  transition: transform 0.2s ease;
}
.blog-home-card:hover .blog-card-more svg {
  transform: translateX(4px);
}

