/* ==========================================================================
   WAYAR NETWORK - Components (Clean White Corporate Theme)
   Fully Optimized for Desktop, Tablet, and Mobile Responsiveness
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Top Notice Bar
   -------------------------------------------------------------------------- */
.top-notice-bar {
  background: var(--border-amber);
  color: #0F172A;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-notice-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .top-notice-bar {
    font-size: 0.76rem;
    padding: 6px 0;
  }
  .top-notice-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  .top-notice-contact {
    justify-content: center;
    gap: 12px;
  }
}

/* --------------------------------------------------------------------------
   2. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 1000;
  border-bottom: 2px solid var(--border-amber);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Base Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.mobile-toggle:hover,
.mobile-toggle:focus {
  background: #FFF7ED;
  border-color: var(--primary);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #0F172A;
  border-radius: 2px;
  margin: 2.5px 0;
  transition: var(--transition);
}

.mobile-toggle:hover span {
  background: var(--primary);
}

/* Mobile Header Sticky / Fixed State */
@media (max-width: 992px) {
  .top-notice-bar {
    display: none !important;
  }
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: #FFFFFF !important;
    border-bottom: 2px solid var(--border-amber) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
  }
  body {
    padding-top: 64px !important;
  }
  .nav-container {
    height: 64px !important;
  }
  .nav-links, .nav-cta .btn {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
  }
  body {
    padding-top: 60px !important;
  }
  .nav-container {
    height: 60px !important;
  }
  .brand-logo img {
    height: 38px !important;
    max-width: 140px;
  }
  .mobile-toggle {
    width: 42px !important;
    height: 42px !important;
  }
}

/* --------------------------------------------------------------------------
   3. Mobile Drawer Navigation
   -------------------------------------------------------------------------- */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 310px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  background: #FFFFFF;
  border-left: 1px solid var(--border-light);
  z-index: 1050;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #64748B;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.drawer-close:hover {
  color: #0F172A;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 20px 0;
}

.drawer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1E293B;
  padding: 12px 6px;
  border-bottom: 1px solid #F1F5F9;
  display: block;
}

.drawer-nav a:hover,
.drawer-nav a.active {
  color: var(--primary);
  padding-left: 10px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  min-height: 42px;
}

.btn-red {
  background: var(--btn-red);
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(228, 14, 14, 0.25);
}

.btn-red:hover {
  background: var(--btn-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(228, 14, 14, 0.35);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF !important;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline-orange {
  background: #FFFFFF;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}

.btn-outline-orange:hover {
  background: var(--primary);
  color: #FFFFFF !important;
}

.btn-outline-cyan {
  background: #FFFFFF;
  color: var(--accent-cyan) !important;
  border: 1.5px solid var(--accent-cyan);
}

.btn-outline-cyan:hover {
  background: var(--accent-cyan);
  color: #FFFFFF !important;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
}

.btn-whatsapp:hover {
  background: #20BA5A;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  min-height: 38px;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 0.98rem;
  min-height: 48px;
}

@media (max-width: 640px) {
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .btn-lg {
    padding: 12px 22px;
    font-size: 0.92rem;
  }
}

/* --------------------------------------------------------------------------
   5. Hero Video Banner
   -------------------------------------------------------------------------- */
.hero-video-banner {
  position: relative;
  background: #000000;
  overflow: hidden;
  height: 480px;
}

.hero-video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

@media (max-width: 768px) {
  .hero-video-banner {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-video-banner {
    height: 220px;
  }
}

/* --------------------------------------------------------------------------
   6. Hero Stats Bar (Value Proposition)
   -------------------------------------------------------------------------- */
.hero-stats-wrapper {
  background: var(--bg-warm);
  border-bottom: 1px solid #FED7AA;
  padding: 20px 0;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.hero-stat-item {
  border-right: 1px solid #FED7AA;
  padding: 10px 14px;
}

.hero-stat-item:last-child {
  border-right: none;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

@media (max-width: 992px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
  }
  .hero-stat-item:nth-child(2) {
    border-right: none;
  }
  .hero-stat-item:nth-child(1),
  .hero-stat-item:nth-child(2) {
    border-bottom: 1px solid #FED7AA;
    padding-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }
  .hero-stat-item {
    border-right: none !important;
    border-bottom: 1px solid #FED7AA;
    padding: 10px 0;
  }
  .hero-stat-item:last-child {
    border-bottom: none;
  }
  .hero-stat-number {
    font-size: 1.7rem;
  }
}

/* --------------------------------------------------------------------------
   7. Service Info Cards (Core Services)
   -------------------------------------------------------------------------- */
.info-card {
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.info-card.info-card-orange {
  border: 2px solid var(--primary) !important;
}

.info-card.info-card-orange:hover {
  border-color: var(--primary-dark) !important;
  box-shadow: 0 8px 24px rgba(247, 130, 34, 0.15);
  transform: translateY(-3px);
}

.info-card.info-card-cyan,
.info-card.info-card-blue {
  border: 2px solid var(--accent-cyan) !important;
}

.info-card.info-card-cyan:hover,
.info-card.info-card-blue:hover {
  border-color: #0096d1 !important;
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.18);
  transform: translateY(-3px);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 640px) {
  .info-card {
    padding: 22px 18px;
  }
  .info-card h3 {
    font-size: 1.25rem !important;
  }
  .info-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
  .card-actions {
    gap: 10px;
  }
  .card-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 130px;
    font-size: 0.82rem;
    padding: 8px 12px;
  }
}

@media (max-width: 380px) {
  .card-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   8. Service Sector Cards
   -------------------------------------------------------------------------- */
.sector-card {
  background: #FFFFFF;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 28px 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  min-height: 200px;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-dark);
}

.sector-thumb {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sector-thumb img {
  max-height: 80px;
  max-width: 140px;
  object-fit: contain;
}

.sector-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .sector-card {
    padding: 16px 10px 14px;
    min-height: 145px;
    border-radius: 10px;
  }
  .sector-thumb {
    height: 60px;
    margin-bottom: 10px;
  }
  .sector-thumb img {
    max-height: 52px;
    max-width: 95px;
  }
  .sector-title {
    font-size: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   9. Partner Logo Cards (4 in Row 1, 3 Centered in Row 2)
   -------------------------------------------------------------------------- */
.partners-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 0 10px 0;
  max-width: 1140px;
  margin: 0 auto;
}

.partners-row-4,
.partners-row-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 115px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: #F78222;
  box-shadow: 0 8px 24px rgba(247, 130, 34, 0.12);
}

.partner-card img {
  max-height: 56px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .partners-layout {
    gap: 16px;
  }
  .partners-row-4,
  .partners-row-3 {
    gap: 14px;
  }
  .partner-card {
    width: calc(50% - 12px);
    max-width: 240px;
    height: 100px;
    padding: 14px 18px;
  }
  .partner-card img {
    max-height: 48px;
    max-width: 150px;
  }
}

@media (max-width: 540px) {
  .partners-layout {
    gap: 10px;
    padding: 16px 0 0 0;
  }
  .partners-row-4,
  .partners-row-3 {
    gap: 10px;
  }
  .partner-card {
    width: calc(50% - 6px);
    min-width: 130px;
    max-width: none;
    height: 84px;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .partner-card img {
    max-height: 38px;
    max-width: 115px;
  }
}

/* --------------------------------------------------------------------------
   10. Product Cards (Refurbished Laptops)
   -------------------------------------------------------------------------- */
.product-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-thumb {
  position: relative;
  height: 220px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
}

.product-thumb img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.warranty-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.35;
  min-height: 44px;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-pill {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
  color: #475569;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  gap: 10px;
}

.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 640px) {
  .product-thumb {
    height: 190px;
    padding: 12px;
  }
  .product-thumb img {
    max-height: 155px;
  }
  .product-body {
    padding: 16px;
  }
  .product-title {
    font-size: 1.02rem;
    min-height: auto;
    margin-bottom: 10px;
  }
}

@media (max-width: 440px) {
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .product-price {
    font-size: 1.4rem;
  }
  .product-actions {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 8px;
    width: 100%;
  }
  .product-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   11. Google Maps Embed Wrapper
   -------------------------------------------------------------------------- */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-info-bar {
  padding: 16px 24px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 768px) {
  .map-embed-wrapper {
    height: 320px;
  }
  .map-info-bar {
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 12px;
  }
  .map-info-bar .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   12. Interactive Enquiry Modal
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  transform: translateY(15px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #94A3B8;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.modal-close:hover {
  color: #0F172A;
  background: #F1F5F9;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 10px 14px;
  color: #0F172A;
  outline: none;
  font-size: 0.95rem;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(247, 130, 34, 0.15);
}

@media (max-width: 540px) {
  .modal-backdrop {
    padding: 12px;
  }
  .modal-content {
    padding: 22px 16px;
    border-radius: 10px;
    max-height: 92vh;
  }
  .modal-close {
    top: 12px;
    right: 12px;
  }
}

/* --------------------------------------------------------------------------
   13. Floating Action Hub
   -------------------------------------------------------------------------- */
.floating-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 990;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: var(--transition);
}

.floating-btn.whatsapp {
  background: #25D366;
}

.floating-btn.call {
  background: var(--primary);
}

.floating-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 640px) {
  .floating-hub {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
  }
  .floating-btn svg,
  .floating-btn i {
    width: 20px !important;
    height: 20px !important;
  }
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  padding-top: 50px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom-bar {
  background: var(--border-amber);
  color: #0F172A;
  padding: 20px 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 36px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 30px;
  }
  .footer-bottom-bar {
    padding: 16px 0;
    font-size: 0.82rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-inner > div:last-child {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   15. Callout Banners & Filter Controls
   -------------------------------------------------------------------------- */
.callout-banner {
  background: #FFFFFF;
  border: 2px solid var(--border-amber);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .callout-banner {
    padding: 22px 16px;
  }
  .callout-banner h3 {
    font-size: 1.3rem !important;
  }
  .callout-banner .btn {
    width: 100%;
  }
}

.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .filter-tabs-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
  }
  .filter-tabs-container .btn {
    width: 100%;
    font-size: 0.78rem;
    padding: 8px 10px;
  }
}
