/* ==========================================================================
   VAMANZ MOTOWEAR - OFFICIAL WEBSITE STYLESHEET
   Aesthetic: Premium, Bold, Masculine, Clean, Modern Motowear
   Palette: Obsidian, Carbon, Gunmetal, Titanium, Monochrome + Channel Accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core derived from logo: Pure Black & High-Contrast White */
  --color-bg-base: #08090b;
  --color-bg-surface: #0f1116;
  --color-bg-surface-elevated: #151821;
  --color-bg-surface-hover: #1c202b;
  
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-medium: rgba(255, 255, 255, 0.16);
  --color-border-strong: rgba(255, 255, 255, 0.28);
  
  --color-text-primary: #f8f9fa;
  --color-text-secondary: #9da4b3;
  --color-text-muted: #626a7a;

  /* Channel Accent Colors */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #128C7E;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.25);
  
  --color-waze: #33CCFF;
  --color-waze-dark: #0099cc;
  --color-waze-glow: rgba(51, 204, 255, 0.25);
  
  --color-shopee: #EE4D2D;
  --color-shopee-glow: rgba(238, 77, 45, 0.22);
  
  --color-lazada: #0f52ba;
  --color-lazada-glow: rgba(15, 82, 186, 0.25);

  --color-facebook: #1877F2;
  --color-instagram: #E1306C;
  --color-tiktok: #00f2fe;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Layout & Spacing */
  --max-width: 1040px;
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: #08090b;
  color: var(--color-text-primary);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Accessibility: Focus visible outline */
:focus-visible {
  outline: 2px solid var(--color-whatsapp);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   3. Layout Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* --------------------------------------------------------------------------
   4. Minimal Sticky Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: #08090b;
  border-bottom: 1px solid transparent;
  transition: background-color var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.site-header.scrolled {
  background-color: #0c0e13;
  border-bottom-color: var(--color-border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

.header-logo-link {
  display: flex;
  align-items: center;
  opacity: 0.95;
  transition: opacity var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.header-logo-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-logo-img {
  height: 32px;
  width: auto;
  max-width: 140px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  transition: color var(--duration-normal) var(--ease-out);
}

.header-link:hover {
  color: var(--color-text-primary);
}

@media (max-width: 600px) {
  .header-link {
    display: none;
  }
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(37, 211, 102, 0.12);
  color: var(--color-whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.35);
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-header-whatsapp .icon-svg {
  width: 16px;
  height: 16px;
}

.btn-header-whatsapp:hover {
  background-color: var(--color-whatsapp);
  color: #05140b;
  border-color: var(--color-whatsapp);
  box-shadow: 0 0 16px var(--color-whatsapp-glow);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 60px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #131620 0%, #08090b 100%);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 36px 0 48px 0;
  }
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Top Subtle Tag / Pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-subtle);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-whatsapp);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
}

/* Prominent Hero Logo */
.hero-logo-wrapper {
  max-width: 500px;
  width: 90%;
  margin: 0 auto 28px auto;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
}

.hero-logo-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-logo-img {
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .hero-logo-wrapper {
    padding: 18px 20px;
    margin-bottom: 28px;
  }
}

/* Hero Typography */
.hero-copy {
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-location {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}

/* Hero 5 Online Platform Buttons */
.hero-platforms-wrap {
  width: 100%;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: all var(--duration-normal) var(--ease-out);
  flex: 0 1 auto;
}

.platform-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.platform-btn:hover {
  background-color: var(--color-bg-surface-elevated);
  transform: translateY(-2px);
}

.btn-facebook .platform-btn-icon { color: var(--color-facebook); }
.btn-facebook:hover {
  border-color: rgba(24, 119, 242, 0.6);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
}

.btn-instagram .platform-btn-icon { color: var(--color-instagram); }
.btn-instagram:hover {
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

.btn-tiktok .platform-btn-icon { color: var(--color-tiktok); }
.btn-tiktok:hover {
  border-color: rgba(0, 242, 254, 0.6);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.25);
}

.btn-shopee .platform-btn-icon { color: var(--color-shopee); }
.btn-shopee:hover {
  border-color: var(--color-shopee);
  box-shadow: 0 6px 20px var(--color-shopee-glow);
}

.btn-lazada .platform-btn-icon { color: #3b82f6; }
.btn-lazada:hover {
  border-color: #3b82f6;
  box-shadow: 0 6px 20px var(--color-lazada-glow);
}

@media (max-width: 600px) {
  .hero-platforms-wrap {
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero-platforms-grid .platform-btn:last-child {
    grid-column: 1 / -1;
  }
  .platform-btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 600px;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .hero-cta-group {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
}

/* Buttons Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  font-family: inherit;
  transition: all var(--duration-normal) var(--ease-out);
  user-select: none;
}

.btn-primary {
  flex: 1.2;
  background-color: var(--color-whatsapp);
  color: #041208;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  gap: 14px;
  box-shadow: 0 4px 14px var(--color-whatsapp-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background-color: #2bf075;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  flex: 1;
  background: var(--color-bg-surface-elevated);
  color: var(--color-text-primary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  gap: 14px;
  border: 1px solid rgba(51, 204, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
  background: var(--color-bg-surface-hover);
  border-color: var(--color-waze);
  color: #ffffff;
  box-shadow: 0 6px 24px var(--color-waze-glow),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon-waze {
  color: var(--color-waze);
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn-main-label {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.btn-sub-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  opacity: 0.75;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out);
}

.btn:hover .btn-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: color var(--duration-normal) var(--ease-out);
  margin-top: 10px;
}

.hero-scroll-hint:hover {
  color: var(--color-text-secondary);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--color-border-medium);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--color-text-secondary);
  border-radius: 2px;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   7. Sections Shared Layout
   -------------------------------------------------------------------------- */
.section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tag-icon {
  width: 14px;
  height: 14px;
  color: var(--color-text-muted);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-border-strong), transparent);
  margin: 16px auto 0 auto;
}

.icon-facebook {
  color: var(--color-facebook);
}

.icon-instagram {
  color: var(--color-instagram);
}

.icon-tiktok {
  color: var(--color-tiktok);
}

.icon-shopee {
  color: var(--color-shopee);
}

.icon-lazada {
  color: #3b82f6;
}

/* --------------------------------------------------------------------------
   9. Visit Vamanz Section (Store Location)
   -------------------------------------------------------------------------- */
.location-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-lg);
  padding: 36px 36px 40px 36px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  position: relative;
}

@media (max-width: 640px) {
  .location-card {
    padding: 24px 20px 28px 20px;
  }
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-subtle);
  margin-bottom: 24px;
}

.location-pin-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(51, 204, 255, 0.08);
  border: 1px solid rgba(51, 204, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-pin-icon {
  width: 28px;
  height: 28px;
  color: var(--color-waze);
}

.location-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-business-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.location-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.location-card-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.address-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  position: relative;
}

.address-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.address-text {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.btn-copy-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-copy-address:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-primary);
  border-color: var(--color-border-medium);
}

.copy-icon {
  width: 14px;
  height: 14px;
}

.location-actions {
  display: flex;
  justify-content: flex-start;
}

.btn-waze-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 28px;
  background: #112836;
  border: 1px solid var(--color-waze);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px var(--color-waze-glow);
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-waze-nav:hover {
  background: var(--color-waze);
  color: #04141c;
  box-shadow: 0 6px 20px rgba(51, 204, 255, 0.4);
  transform: translateY(-2px);
}

.btn-waze-nav:hover .icon-waze {
  color: #04141c;
}

/* --------------------------------------------------------------------------
   10. Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-card:hover {
  background: var(--color-bg-surface-elevated);
  border-color: var(--color-border-medium);
  transform: translateY(-2px);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-box {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--color-whatsapp);
}

.email-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
}

.contact-card-icon {
  width: 22px;
  height: 22px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-type {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  word-break: break-all;
}

.contact-value:hover {
  color: var(--color-whatsapp);
}

.contact-card-email .contact-value:hover {
  color: #ffffff;
  text-decoration: underline;
}

.btn-whatsapp-card,
.btn-email-card {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: all var(--duration-normal) var(--ease-out);
}

.btn-whatsapp-card {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: var(--color-whatsapp);
}

.btn-whatsapp-card:hover {
  background: var(--color-whatsapp);
  color: #041208;
  box-shadow: 0 4px 16px var(--color-whatsapp-glow);
}

.btn-email-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
}

.btn-email-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-border-medium);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #050608;
  border-top: 1px solid var(--color-border-subtle);
  padding: 60px 0 32px 0;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 600px) {
  .footer-brand-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-business-info {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.footer-brand-loc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

@media (max-width: 640px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.footer-link-item:hover {
  color: var(--color-text-primary);
  transform: translateX(2px);
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. Floating Mobile WhatsApp Button
   -------------------------------------------------------------------------- */
.floating-whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

/* Support safe area for notched devices (iPhone) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .floating-whatsapp-container {
    bottom: calc(24px + env(safe-area-inset-bottom));
    right: calc(20px + env(safe-area-inset-right));
  }
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  color: #041208;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform var(--duration-normal) var(--ease-out);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-icon {
  width: 32px;
  height: 32px;
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: var(--color-bg-surface-elevated);
  color: var(--color-text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--duration-normal) var(--ease-out);
  pointer-events: none;
}

.floating-whatsapp-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .floating-tooltip {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   13. Toast Notification for Clipboard
   -------------------------------------------------------------------------- */
.toast {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a1e28;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border-strong);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.toast.show {
  display: block;
}

/* --------------------------------------------------------------------------
   14. Subtle Scroll Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   15. Accessibility & Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
