/* ============================================
   ATOMIK GROWTH - GLOBAL REUSABLE STYLES
   Professional CSS System
   ============================================ */

/* ===== SF PRO FONTS ===== */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../asset/font/SF-PRO-DISPLAY-FONT/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../asset/font/SF-PRO-DISPLAY-FONT/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Display';
  src: url('../asset/font/SF-PRO-DISPLAY-FONT/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../asset/font/SF-PRO-TEXT-FONT/SF-Pro-Text-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../asset/font/SF-PRO-TEXT-FONT/SF-Pro-Text-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('../asset/font/SF-PRO-TEXT-FONT/SF-Pro-Text-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main,
.hero,
section {
  flex: 1;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --gold-base: #d4af37;
  --gold-light: #d4af37;
  --gold-dark: #c9a55c;
  --gold-color: var(--gold-base);
  --gold-rgb: 212, 175, 55;
  --black-bg: #0b0b0b;
  --black-card: #121212;
  --black-dark: #1a1a1a;
  --gray-900: #1f1f1f;
  --gray-800: #2a2a2a;
  --gray-700: #3a3a3a;
  --gray-600: #4a4a4a;
  --gray-500: #6a6a6a;
  --gray-400: #888888;
  --gray-300: #999999;
  --gray-200: #cfcfcf;
  --gray-100: #e0e0e0;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'SF Pro Display', sans-serif;
  --font-body: 'SF Pro Text', sans-serif;
  --heading-color: #ffffff;
  --text-color: #b8b8b8;
  --text-muted: #888888;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  --section-gap: 80px;
  --section-gap-mobile: 60px;

  /* Container */
  --container-max-width: 1200px;
  --container-padding: 40px;
  --container-padding-tablet: 30px;
  --container-padding-mobile: 20px;

  /* Borders */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-fixed: 1030;
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --black-bg: #ffffff;
  --black-card: #f5f5f5;
  --black-dark: #e8e8e8;
  --gray-900: #f0f0f0;
  --gray-800: #e5e5e5;
  --gray-700: #d4d4d4;
  --gray-600: #bfbfbf;
  --heading-color: #1a1a1a;
  --text-color: #333333;
  --text-muted: #666666;
}

[data-theme="light"] .text-white {
  color: #000000 !important;
}

[data-theme="light"] body,
[data-theme="light"] html,
[data-theme="light"] .hero,
[data-theme="light"] section,
[data-theme="light"] footer,
[data-theme="light"] header,
[data-theme="light"] main,
[data-theme="light"] .footer {
  background-color: #ffffff;
}

[data-theme="light"] section {
  background-color: #ffffff;
}

[data-theme="light"] .nav-wrapper {
  background: transparent;
}

[data-theme="light"] .navbar-glass {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-link {
  color: #333333;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #d4af37;
}

[data-theme="light"] .nav-dropdown-toggle::after {
  border-top-color: #333333;
}

[data-theme="light"] .nav-dropdown-menu {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .nav-dropdown-item {
  color: #333333;
}

[data-theme="light"] .nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #1a1a1a;
}

[data-theme="light"] .hamburger span {
  background: #1a1a1a;
}

[data-theme="light"] .mobile-menu {
  background-color: #ffffff;
}

[data-theme="light"] .mobile-menu-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-close {
  color: #1a1a1a;
}

[data-theme="light"] .mobile-nav-link {
  color: #1a1a1a;
}

[data-theme="light"] .mobile-nav-link:hover,
[data-theme="light"] .mobile-nav-link.active {
  color: #d4af37;
}

[data-theme="light"] .mobile-dropdown-item {
  color: #333333;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .mobile-menu-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer {
  background-color: #f5f5f5;
}

[data-theme="light"] .footer-brand .brand-name {
  color: #1a1a1a;
}

[data-theme="light"] .footer-brand .brand-tagline,
[data-theme="light"] .footer-brand .brand-location,
[data-theme="light"] .footer-brand .brand-phone {
  color: #666666;
}

[data-theme="light"] .footer-links li a {
  color: #666666;
}

[data-theme="light"] .footer-links li a:hover {
  color: #1a1a1a;
}

[data-theme="light"] .footer-divider {
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .copyright,
[data-theme="light"] .footer-legal a {
  color: #888888;
}

[data-theme="light"] .column-title {
  color: #b8962e;
}

[data-theme="light"] .social-link {
  background: rgba(0, 0, 0, 0.05);
  color: #666666;
}

[data-theme="light"] .social-link:hover {
  background: #d4af37;
  color: #ffffff;
}

[data-theme="light"] p {
  color: #333333;
}

[data-theme="light"] .platform-icon {
  background: #f0f0f0;
  border: 1px solid #ddd;
}

[data-theme="light"] section::before {
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

[data-theme="light"] .services-section,
[data-theme="light"] .stats-section,
[data-theme="light"] .testimonials-section,
[data-theme="light"] .video-section,
[data-theme="light"] .marquee-section,
[data-theme="light"] .cta {
  background-color: #ffffff;
}

[data-theme="light"] .testimonial-card {
  background-color: whitesmoke;
  border: 1px solid #e0e0e0;
}


[data-theme="light"] .cta {
  background: radial-gradient(circle at center, #f5f5f5 0%, #e8e8e8 70%);
}

[data-theme="light"] .cta-heading {
    color: #1a1a1a;
}

[data-theme="light"] .cta-subheading {
    color: #333333;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
  color: #1a1a1a;
  text-shadow: none;
}

[data-theme="light"] .hero-title,
[data-theme="light"] .hero-span {
  color: #1a1a1a;
}

[data-theme="light"] .hero-distribution {
  color: #d4af37 !important;
}

[data-theme="light"] .main-title {
  color: #1a1a1a;
}

[data-theme="light"] .section-number {
  color: #d4af37;
}

[data-theme="light"] .service-title {
  color: #1a1a1a;
}

[data-theme="light"] .service-description {
  color: #333333;
}

[data-theme="light"] .video-border {
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

[data-theme="light"] .flashing-gradient-border {
  animation: flash-border-light 1.5s infinite;
}

@keyframes flash-border-light {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 35px rgba(212, 175, 55, 0.3);
  }
}

/* Theme Toggle Button */
.theme-toggle {
  background: #d4af37;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: absolute;
  right: 30px;
  z-index: 10;
}

.theme-toggle:hover {
  background: rgba(212, 175, 55, 0.3);
}

.theme-toggle i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

[data-theme="light"] .theme-toggle i {
  color: #1a1a1a;
}

[data-theme="light"] .theme-toggle {
  background: #f0f0f0;
}

[data-theme="light"] .theme-toggle:hover {
  background: #e0e0e0;
}

.theme-toggle .fa-sun {
  display: none;
}

.theme-toggle .fa-moon {
  display: block;
}

[data-theme="light"] .theme-toggle .fa-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .fa-moon {
  display: none;
}

@media (max-width: 992px) {
  [data-theme="light"] .nav-wrapper {
    background: rgba(255, 255, 255, 0.95);
  }

  .theme-toggle {
    right: 80px;
  }
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html,
.hero,
.section,
footer,
header,
main,
.footer {
  background-color: #0b0b0b;
}

[data-theme="light"] body,
[data-theme="light"] html {
  background-color: #ffffff;
}

.nav-wrapper {
  background: transparent;
}

section {
  padding: var(--section-padding) 0;
  background-color: var(--black-bg);
  position: relative;
}

section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

@media (max-width: 992px) {
  .container {
    padding: 0 var(--container-padding-tablet);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
    --section-gap: var(--section-gap-mobile);
  }

  .container {
    padding: 0 var(--container-padding-mobile);
  }

  section {
    padding: var(--section-padding-mobile) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

.container-fluid {
  max-width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.1), 0 0 20px rgba(212, 175, 55, 0.05);
  position: relative;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h4 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h5 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

p {
  font-family: var(--font-body);
  color: #b8b8b8;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-gold,
.btn-dark-cta {
  background: #d4af37;
  color: #000000;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  font-family: 'SF Pro Text', sans-serif;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-gold:hover,
.btn-dark-cta:hover {
  background: #c9a55c;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold span,
.btn-dark-cta span,
.btn-gold a,
.btn-dark-cta a {
  color: #000000;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 400;
}

/* ===== PLATFORM ICONS ===== */
.platform-icons {
  display: flex;
  gap: 16px;
  margin: 48px 0px 48px 0px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid #333;
  overflow: hidden;
  transition: 0.3s ease;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-icon:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* ===== FLOAT ANIMATION ===== */
.float-animation {
  opacity: 1;
  transform: translateY(20px) scale(0.9);
  animation: floatIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(0.8s + var(--delay));
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  50% {
    transform: translateY(-5px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== SECTION CONTAINERS ===== */
.section .container,
.hero-section .container,
.acquire-section .container,
.description-section .container,
.challenge-section .container,
.objectives-section .container,
.strategy-section .container,
.results-section .container,
.more-cases-section .container,
.next-case-section .container,
.teaser .container,
.services-section .container,
.testimonials-section .container,
.contact-section .container,
.video-section .container,
.marquee-section .container,
.stats-section .container,
.cta .container,
.footer .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 992px) {

  .section .container,
  .hero-section .container,
  .acquire-section .container,
  .description-section .container,
  .challenge-section .container,
  .objectives-section .container,
  .strategy-section .container,
  .results-section .container,
  .more-cases-section .container,
  .next-case-section .container,
  .teaser .container,
  .services-section .container,
  .testimonials-section .container,
  .contact-section .container,
  .video-section .container,
  .marquee-section .container,
  .stats-section .container,
  .cta .container,
  .footer .container {
    padding: 0 var(--container-padding-tablet);
  }
}

@media (max-width: 768px) {

  .section .container,
  .hero-section .container,
  .acquire-section .container,
  .description-section .container,
  .challenge-section .container,
  .objectives-section .container,
  .strategy-section .container,
  .results-section .container,
  .more-cases-section .container,
  .next-case-section .container,
  .teaser .container,
  .services-section .container,
  .testimonials-section .container,
  .contact-section .container,
  .video-section .container,
  .marquee-section .container,
  .stats-section .container,
  .cta .container,
  .footer .container {
    padding: 0 var(--container-padding-mobile);
  }
}

@media (max-width: 480px) {

  .section .container,
  .hero-section .container,
  .acquire-section .container,
  .description-section .container,
  .challenge-section .container,
  .objectives-section .container,
  .strategy-section .container,
  .results-section .container,
  .more-cases-section .container,
  .next-case-section .container,
  .teaser .container,
  .services-section .container,
  .testimonials-section .container,
  .contact-section .container,
  .video-section .container,
  .marquee-section .container,
  .stats-section .container,
  .cta .container,
  .footer .container {
    padding: 0 15px;
  }
}

/* ===== NAVBAR ===== */
.nav-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 40px;
}

.nav-wrapper .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  position: relative;
}

.nav-wrapper .brand {
  position: relative;
  z-index: 2;
}

.navbar-glass {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.nav-wrapper .btn-gold {
  margin-left: auto;
}

.nav-wrapper.scrolled {
  top: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 10px 40px;
}

@media (max-width: 992px) {
  .nav-wrapper {
    top: 0;
    background: rgb(0 0 0 / 72%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 10px 20px;
  }

  .navbar-glass {
    margin: 0;
  }
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand img {
  height: 45px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

[data-theme="light"] .brand img {
  filter: brightness(0) invert(0);
}

/* Navbar Glass */
.navbar-glass {
  display: flex;
  visibility: visible;
  align-items: center;
  gap: 15px;
  background: rgba(42, 42, 42, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Nav Links */
.nav-link {
  color: #cfcfcf;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: 'SF Pro Text', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 6px 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #d4af37;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
  display: block;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: calc(100% - 24px);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #cfcfcf;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
  border-top-color: #d4af37;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0b0b0b;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
  margin-top: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  display: block;
  color: #cfcfcf;
  padding: 12px 25px;
  font-family: 'SF Pro Text', sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #ffffff;
  padding-left: 30px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 10001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  flex-direction: column;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

[data-theme="light"] .mobile-brand img {
  filter: brightness(0) invert(0);
}

.mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-close:hover {
  color: #d4af37;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 25px;
  gap: 15px;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'SF Pro Text', sans-serif;
  text-decoration: none;
  padding: 12px 0;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #c9a55c;
}

.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-toggle {
  pointer-events: auto;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
  width: 100%;
  gap: 0;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown-item {
  color: #cfcfcf;
  font-size: 1rem;
  padding: 8px 0;
  text-decoration: none;
  font-family: 'SF Pro Text', sans-serif;
  transition: all 0.2s ease;
  display: block;
  pointer-events: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-item:hover {
  color: #c9a55c;
  padding-left: 10px;
}

.dropdown-arrow {
  float: right;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-arrow {
  transform: rotate(90deg);
}

.mobile-menu-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .navbar-glass {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-gold.d-none.d-lg-inline-block {
    display: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background-color: #121212;
  padding: 60px 0 30px;
  border-top: none;
  margin-bottom: 0;
  margin-top: auto;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media (max-width: 992px) {
  .footer {
    padding: 50px 0 30px;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-top {
    gap: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    gap: 25px;
    margin-bottom: 25px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 992px) {
  .footer-brand {
    align-items: center;
    text-align: center;
  }
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  border: none;
}

@media (max-width: 992px) {
  .footer-brand .brand-logo {
    justify-content: center;
  }
}

.footer-brand .brand-logo img {
  height: 32px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

[data-theme="light"] .footer-brand .brand-logo img {
  filter: brightness(0) invert(0);
}

.footer-brand .brand-name {
  font-family: 'SF Pro Text', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}

.footer-brand .brand-tagline {
  font-size: 14px;
  color: #999999;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.footer-brand .brand-location,
.footer-brand .brand-phone {
  font-size: 14px;
  color: #999999;
  font-weight: 400;
  margin: 0;
  text-decoration: none;
  display: block;
}

.footer-brand .brand-phone:hover {
  color: #ffffff;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 992px) {
  .footer-column {
    align-items: center;
    text-align: center;
  }
}

.column-title {
  font-family: 'SF Pro Text', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a55c;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
  text-align: left;
}

@media (max-width: 992px) {
  .column-title {
    text-align: center;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links li a {
  color: #999999;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'SF Pro Text', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 0;
  text-align: left;
  border-bottom: none;
}

@media (max-width: 992px) {
  .footer-links li a {
    text-align: center;
  }
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 992px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    gap: 10px;
  }
}

.copyright {
  color: #666666;
  font-size: 0.85rem;
  font-family: 'SF Pro Text', sans-serif;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 992px) {
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

.footer-legal a {
  color: #666666;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'SF Pro Text', sans-serif;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #c9a55c;
}

.footer-legal .separator {
  color: #666666;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

@media (max-width: 992px) {
  .social-links {
    justify-content: center;
  }
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #999999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #c9a55c;
  color: #1a1a1a;
  transform: translateY(-3px);
}

/* ===== INTERACTIVE EFFECTS ===== */
/* Hide default cursor on interactive elements */
a, button, .nav-link, .filter-btn, .article-card, .btn {
  cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1ebe5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    font-size: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
