/* ==========================================================================
   BUSCAPET - FULL RESPONSIVE WEB APPLICATION STYLES (HOSTINGER READY)
   ========================================================================== */

:root {
  --primary: #FF5A5F;
  --primary-hover: #E0484D;
  --primary-light: rgba(255, 90, 95, 0.12);
  --secondary: #00A699;
  --secondary-hover: #008477;
  --secondary-light: rgba(0, 166, 153, 0.12);
  --accent: #FC642D;
  --adopt: #8B5CF6;
  --adopt-light: rgba(139, 92, 246, 0.12);
  --danger: #FF385C;
  --danger-light: rgba(255, 56, 92, 0.12);
  --success: #00D084;
  --success-light: rgba(0, 208, 132, 0.12);
  --warning: #FFAA00;
  --warning-light: rgba(255, 170, 0, 0.12);

  --bg-main: #0B0E14;
  --bg-card: #151A23;
  --bg-input: #1C2331;
  --bg-hover: #232B3C;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 90, 95, 0.5);

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-primary: 0 4px 20px rgba(255, 90, 95, 0.35);

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ==========================================================================
   DESKTOP TOP NAVIGATION BAR
   ========================================================================== */

.web-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-box .paw {
  font-size: 26px;
  filter: drop-shadow(0 0 10px rgba(255, 90, 95, 0.5));
}

.brand-box .name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FF5A5F 0%, #FFAA00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-center-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.nav-link-btn:hover,
.nav-link-btn.active {
  background: var(--bg-hover);
  color: var(--text-main);
}

.nav-link-btn.active {
  color: var(--primary);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-web-report {
  background: linear-gradient(135deg, #FF5A5F 0%, #FC642D 100%);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: all 0.2s ease;
}

.btn-web-report:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 90, 95, 0.45);
}

.btn-web-ad {
  background: rgba(0, 166, 153, 0.15);
  color: #00A699;
  border: 1.5px solid #00A699;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-web-ad:hover {
  background: #00A699;
  color: #fff;
}

/* ==========================================================================
   HERO BANNER & APP STORE BADGES
   ========================================================================== */

.hero-banner-section {
  background: linear-gradient(180deg, rgba(255, 90, 95, 0.08) 0%, rgba(11, 14, 20, 0) 100%);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px 24px;
}

.hero-content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge-tag {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(255, 90, 95, 0.3);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-main-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 20px;
}

/* App Store Download Badges (Próximamente) */
.store-badges-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-badge-card {
  background: #11151F;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.store-badge-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.store-icon {
  font-size: 24px;
}

.store-info {
  text-align: left;
}

.store-subtitle {
  font-size: 9.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.store-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.store-coming-soon {
  background: var(--warning);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  text-transform: uppercase;
}

/* 4 Quick Action Cards in Hero */
.hero-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 860px;
  margin-top: 10px;
}

.hero-card-action {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  padding: 14px 12px;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-card-action i {
  font-size: 20px;
}

.hero-card-action:hover {
  transform: translateY(-2px);
}

.hero-card-action.card-lost {
  border-color: rgba(255, 56, 92, 0.4);
  color: var(--danger);
}
.hero-card-action.card-lost:hover {
  background: var(--danger-light);
}

.hero-card-action.card-report {
  background: linear-gradient(135deg, #FF5A5F 0%, #FC642D 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.hero-card-action.card-adopt-view {
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--adopt);
}
.hero-card-action.card-adopt-view:hover {
  background: var(--adopt-light);
}

.hero-card-action.card-adopt-offer {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

/* ==========================================================================
   MAIN LAYOUT (2-COLUMN / 3-COLUMN DESKTOP GRID)
   ========================================================================== */

.web-main-layout {
  max-width: var(--max-width);
  margin: 24px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 24px;
  align-items: start;
}

/* Left Sidebar (Filters & Location) */
.web-sidebar-left {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.widget-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-category-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-cat-btn {
  background: transparent;
  color: var(--text-main);
  border: 1px solid transparent;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.filter-cat-btn:hover {
  background: var(--bg-hover);
}

.filter-cat-btn.active {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(255, 90, 95, 0.3);
}

.filter-cat-btn.pill-adopt.active {
  background: var(--adopt-light);
  color: var(--adopt);
  border-color: rgba(139, 92, 246, 0.3);
}

/* Center Feed */
.web-center-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Right Sidebar (Sponsor, Donations, Admin) */
.web-sidebar-right {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   FEED POST CARDS (MODERN DESKTOP & MOBILE FRIENDLY)
   ========================================================================== */

.feed-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.post-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  box-shadow: var(--shadow-md);
}

.post-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.post-time-loc {
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-lost {
  background: var(--danger-light);
  color: var(--danger);
  border: 1px solid rgba(255, 56, 92, 0.3);
}

.status-found {
  background: var(--success-light);
  color: var(--success);
  border: 1px solid rgba(0, 208, 132, 0.3);
}

.status-spotted {
  background: var(--warning-light);
  color: var(--warning);
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.status-adopt {
  background: var(--adopt-light);
  color: var(--adopt);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.status-reunited {
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
  border: 1.5px solid #10B981;
}

/* Post Carousel */
.post-media-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sample-image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.85);
  color: #FFD700;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1.5px solid #FFD700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.photo-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  z-index: 5;
}

.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
}

.carousel-dot.active {
  width: 18px;
  border-radius: 3px;
  background: #ffffff;
}

/* Post Actions */
.post-actions {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.action-group-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: var(--bg-hover);
  color: var(--text-main);
}

.action-btn.liked {
  color: var(--danger);
}

.btn-map-view {
  background: var(--bg-input);
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.btn-contact-owner {
  background: var(--primary);
  color: white;
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 90, 95, 0.3);
}

.post-details {
  padding: 14px 16px;
}

.pet-headline {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.pet-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pet-tag {
  background: var(--bg-input);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.post-caption {
  font-size: 13.5px;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 10px;
}

.location-snippet {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Reunited Banner */
.reunited-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
  border: 1.5px solid #10B981;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reunited-banner i {
  font-size: 20px;
  color: #10B981;
}

.reunited-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
}

.reunited-subtitle {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   SPONSORED ADVERTISEMENT CARD
   ========================================================================== */

.ad-card-sponsored {
  background: var(--bg-card);
  border: 1px solid rgba(0, 166, 153, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 166, 153, 0.12);
}

.ad-banner-header {
  padding: 10px 16px;
  background: rgba(0, 166, 153, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 166, 153, 0.2);
}

.ad-demo-badge {
  background: #00A699;
  color: white;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.ad-content {
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.ad-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1.5px solid rgba(0, 166, 153, 0.3);
  flex-shrink: 0;
}

.ad-text-box {
  flex: 1;
  min-width: 0;
}

.ad-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 3px;
}

.ad-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Floating Ad Button */
.floating-ad-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #00A699 0%, #008477 100%);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 166, 153, 0.45);
  z-index: 100;
  transition: all 0.2s ease;
}

.floating-ad-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 166, 153, 0.55);
}

/* ==========================================================================
   MODALS, SHEETS & FORMS
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.sheet-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sheet-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.sheet-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sheet-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.icon-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: var(--bg-hover);
  color: var(--text-main);
}

/* Photo Upload Grid */
.photo-uploader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 12px;
}

.photo-slot {
  aspect-ratio: 1;
  background: var(--bg-input);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.photo-slot:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot .remove-photo-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  transition: transform 0.2s;
}

.photo-slot .remove-photo-btn:hover {
  transform: scale(1.15);
  background: var(--danger);
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
}

.btn-primary-action {
  width: 100%;
  background: linear-gradient(135deg, #FF5A5F 0%, #FC642D 100%);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: all 0.2s ease;
}

.btn-primary-action:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   WEB FOOTER
   ========================================================================== */

.web-footer {
  background: #080A0F;
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   RESPONSIVENESS (TABLETS & MOBILE)
   ========================================================================== */

@media (max-width: 1024px) {
  .web-main-layout {
    grid-template-columns: 240px 1fr;
  }
  .web-sidebar-right {
    display: none;
  }
  .hero-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .web-main-layout {
    grid-template-columns: 1fr;
  }
  .web-sidebar-left {
    position: static;
  }
  .hero-main-title {
    font-size: 24px;
  }
  .hero-action-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-center-menu {
    display: none;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
