/* ==========================================================================
   FOOTER SECTION - PREMIUM DARK NAVY WOW
   ========================================================================== */

/* ─── Article Footer (subpages) ─── */
.footer--article {
  background-color: var(--footer-bg);
  padding: 50px 0 30px;
}

.footer--article .footer-content {
  gap: 28px;
  margin-bottom: 36px;
}

.footer--article .footer-section h4 {
  font-size: 1.1rem;
  color: var(--footer-text-heading);
  margin-bottom: 14px;
}

.footer--article .footer-section p,
.footer--article .footer-section li a {
  font-size: 1rem;
  color: var(--footer-text);
}

.footer--article .footer-bottom {
  padding-top: 20px;
  font-size: 1rem;
}

.footer--article .footer-section .social-links a {
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
}

/* ─── Main Footer ─── */
.footer {
  background: var(--footer-bg);
  padding: 80px 0 40px;
  color: var(--footer-text);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.25;
}

/* Animated orb glow */
.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: footer-orb 12s ease-in-out infinite;
}

@keyframes footer-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

/* ─── About Column ─── */
.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 125, 0, 0.2));
}

.footer-logo span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--footer-text-heading);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about p {
  color: var(--footer-text);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 400px;
}

.footer-about .social-links {
  display: flex;
  gap: 10px;
}

.footer-about .social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-about .social-links a:hover {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 28px rgba(255, 125, 0, 0.35);
}

/* ─── Link Columns ─── */
.footer-links h3, .footer-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--footer-text-heading);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h3::after, .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

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

.footer-links ul a {
  color: var(--footer-text);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul a::before {
  content: '\203A';
  margin-right: 8px;
  color: var(--accent);
  opacity: 0;
  transition: all 0.3s ease;
  font-weight: 700;
}

.footer-links ul a:hover {
  color: var(--accent);
  transform: translateX(6px);
}

.footer-links ul a:hover::before {
  opacity: 1;
}

/* ─── Contact Column ─── */
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  color: var(--footer-text);
  font-size: 1.4rem;
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.footer-contact li a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--accent);
}

/* ─── Bottom Bar ─── */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--footer-text-bottom);
  font-size: 1.35rem;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom .mca-highlight {
  color: var(--accent) !important;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 575px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer { padding: 60px 0 30px; }
}

/* ==========================================================================
   WHATSAPP POPUP & FLOATING BUTTON - MODERN
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 68px;
  height: 68px;
  background: var(--wa-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.2rem;
  cursor: pointer;
  z-index: 999;
  box-shadow:
    0 8px 25px var(--wa-glow),
    0 0 0 0 rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: wa-bounce 2.5s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2.5px solid rgba(37, 211, 102, 0.25);
  animation: wa-ring 2.5s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.1);
  animation: wa-ring-outer 2.5s infinite cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.wa-float:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotate(-8deg);
  box-shadow:
    0 16px 40px rgba(37, 211, 102, 0.5),
    0 0 0 8px rgba(37, 211, 102, 0.08);
}

.wa-float:hover::before,
.wa-float:hover::after {
  animation-play-state: paused;
}

@keyframes wa-bounce {
  0%   { transform: scale(1) translateY(0); }
  10%  { transform: scale(1.08) translateY(-4px); }
  20%  { transform: scale(0.95) translateY(2px); }
  30%  { transform: scale(1.04) translateY(-2px); }
  40%  { transform: scale(0.98) translateY(0); }
  50%  { transform: scale(1) translateY(-6px); }
  65%  { transform: scale(0.96) translateY(3px); }
  80%  { transform: scale(1.02) translateY(-1px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  40%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes wa-ring-outer {
  0%   { transform: scale(1); opacity: 0.4; }
  40%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ─── Popup ─── */
.wa-popup {
  position: fixed;
  bottom: 30px;
  right: 105px;
  width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(10, 25, 49, 0.15);
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.wa-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 575px) {
  .wa-popup {
    right: 20px;
    bottom: 100px;
    width: calc(100% - 40px);
    transform: translateY(20px) scale(0.96);
  }
  .wa-popup.active {
    transform: translateY(0) scale(1);
  }
}

.wa-popup-header {
  background: var(--wa-gradient);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.wa-header-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
}

.wa-header-status {
  font-size: 1.1rem;
  opacity: 0.85;
  display: block;
  margin-top: 1px;
}

.wa-header-status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: wa-dot 1.5s infinite;
}

@keyframes wa-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#wa-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

#wa-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wa-popup-body {
  padding: 20px;
}

.wa-bubble {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  animation: wa-slide-up 0.5s ease;
}

@keyframes wa-slide-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-bubble-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.wa-bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-bubble-text {
  background: var(--wa-bubble-bg);
  padding: 12px 16px;
  border-radius: 8px 16px 16px 16px;
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.5;
  position: relative;
}

.wa-popup-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--wa-gradient);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--wa-glow);
  transition: all 0.3s ease;
}

.wa-popup-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--wa-glow);
}

/* ==========================================================================
   BACK TO TOP BUTTON - MODERN
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 36px;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 15px var(--accent-glow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT MODAL - MODERN PREMIUM WOW
   ========================================================================== */
.about-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-modal.active {
  opacity: 1;
  visibility: visible;
}

.about-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 49, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-modal-container {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  width: 92%;
  max-width: 880px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 40px;
  z-index: 1;
  box-shadow:
    0 8px 40px rgba(10, 25, 49, 0.12),
    0 2px 10px rgba(10, 25, 49, 0.06);
  transform: scale(0.92) translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-modal.active .about-modal-container {
  transform: scale(1) translateY(0);
}

/* ─── Decorative Blobs ─── */
.modal-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.modal-blob-1 {
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.08) 0%, transparent 70%);
  animation: modal-blob-float 8s ease-in-out infinite;
}

.modal-blob-2 {
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 109, 212, 0.06) 0%, transparent 70%);
  animation: modal-blob-float 10s ease-in-out infinite reverse;
}

.modal-blob-3 {
  top: 40%;
  left: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.04) 0%, transparent 70%);
  animation: modal-blob-float 7s ease-in-out infinite 1s;
}

@keyframes modal-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.1); }
}

.about-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(244, 247, 251, 0.8);
  border: none;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.about-modal-close:hover {
  background: var(--accent-gradient);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.about-modal-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 109, 212, 0.08);
  position: relative;
  z-index: 1;
}

.modal-logo-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.modal-logo-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 125, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 125, 0, 0.12);
}

.modal-logo-icon img {
  width: 28px;
  height: auto;
}

.modal-logo-title span {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a2744 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-modal-tabs {
  display: flex;
  gap: 4px;
  background: rgba(244, 247, 251, 0.6);
  padding: 4px;
  border-radius: 14px;
  position: relative;
}

.modal-tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(10, 25, 49, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}

.modal-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 11px 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.modal-tab-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.modal-tab-btn.active i {
  color: var(--accent);
}

.modal-tab-btn:hover:not(.active) i {
  transform: scale(1.15);
}

.about-modal-body {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.modal-tab-content {
  display: none;
}

.modal-tab-content.active {
  display: block;
  animation: modal-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-grid-two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.modal-text-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
  background: linear-gradient(135deg, #1a2744 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-text-content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 1.45rem;
  line-height: 1.7;
}

.modal-image-decor {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.decor-card {
  background: linear-gradient(135deg, rgba(255, 125, 0, 0.03) 0%, rgba(255, 154, 46, 0.06) 100%);
  border: 1px solid rgba(255, 125, 0, 0.1);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.decor-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.decor-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 125, 0, 0.25);
  box-shadow:
    0 8px 24px rgba(255, 125, 0, 0.08),
    0 2px 6px rgba(255, 125, 0, 0.04);
}

.decor-card:hover::after {
  opacity: 1;
}

.decor-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.decor-card:hover .decor-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.decor-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.decor-card p {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ─── Vision & Mission ─── */
.vision-box,
.mission-box {
  background: rgba(244, 247, 251, 0.5);
  border: 1px solid rgba(26, 109, 212, 0.08);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s ease;
}

.vision-box:hover,
.mission-box:hover {
  border-color: rgba(26, 109, 212, 0.15);
  box-shadow: 0 4px 20px rgba(26, 109, 212, 0.04);
}

.badge-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gradient);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.badge-title i {
  font-size: 0.9rem;
}

.vision-box h3 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.vision-box p {
  color: var(--text-secondary);
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mission-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.mission-list li:hover {
  transform: translateX(4px);
}

.mission-list li .num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--accent-gradient);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px var(--accent-glow);
  transition: all 0.3s ease;
}

.mission-list li:hover .num {
  transform: scale(1.15);
}

.mission-list li p {
  color: var(--text-secondary);
  font-size: 1.35rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: rgba(244, 247, 251, 0.5);
  border: 1px solid rgba(26, 109, 212, 0.06);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 125, 0, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 32px rgba(10, 25, 49, 0.08),
    0 4px 12px rgba(255, 125, 0, 0.04);
  border-color: rgba(255, 125, 0, 0.15);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover::after {
  opacity: 1;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 125, 0, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.value-card:hover .value-card-icon {
  background: var(--accent-gradient);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.value-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ─── Scrollbar Styling ─── */
.about-modal-container::-webkit-scrollbar {
  width: 6px;
}

.about-modal-container::-webkit-scrollbar-track {
  background: transparent;
}

.about-modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 125, 0, 0.2);
  border-radius: 3px;
}

.about-modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 125, 0, 0.35);
}

/* ─── About Modal Responsive ─── */
@media (max-width: 768px) {
  .about-modal-container {
    padding: 28px 24px;
    width: 95%;
  }

  .modal-grid-two {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-logo-title span {
    font-size: 1.5rem;
  }

  .about-modal-tabs {
    overflow-x: auto;
  }

  .modal-tab-btn {
    font-size: 1.2rem;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .about-modal-container {
    padding: 20px 16px;
  }

  .modal-logo-title img {
    width: 28px;
  }

  .modal-logo-title span {
    font-size: 1.3rem;
  }
}
