/* =============================================
   PRIZMABRIXX — Components (Neon Glass)
   ============================================= */

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-spring);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad-accent);
  opacity: 0;
  transition: var(--transition-base);
}

.btn-primary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: inset 0 0 10px rgba(245, 145, 40, 0.2), 0 0 15px rgba(245, 145, 40, 0.2);
}

.btn-primary:hover {
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(245, 145, 40, 0.6);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline-light {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.6);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 18px 48px;
  font-size: var(--text-lg);
}

/* ========== PILL LABEL ========== */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pill-label--cyan {
  background: rgba(0, 240, 255, 0.05);
  color: var(--primary);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.pill-label--purple {
  background: rgba(255, 0, 60, 0.05);
  color: var(--accent);
  border: 1px solid rgba(255, 0, 60, 0.3);
}

.pill-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

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

  50% {
    opacity: 0.3;
    transform: scale(0.5);
  }
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 145, 40, 0.04), transparent);
  transform: skewX(-20deg);
  transition: var(--transition-slow);
}

.glass-card:hover {
  border-color: rgba(245, 145, 40, 0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
  background: rgba(245, 145, 40, 0.03);
}

.glass-card:hover::before {
  left: 150%;
}

/* ========== SECTION BADGE ========== */
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(245, 145, 40, 0.08);
  border: 1px solid rgba(245, 145, 40, 0.25);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-badge--light {
  background: rgba(245, 145, 40, 0.06);
  color: var(--accent);
  border-color: rgba(245, 145, 40, 0.20);
}

/* ========== DIVIDER ========== */
.divider {
  width: 80px;
  height: 2px;
  background: var(--grad-accent);
  margin: 24px auto;
  box-shadow: 0 0 10px rgba(245, 145, 40, 0.15);
}

.divider--left {
  margin-left: 0;
}

/* ========== NAVBAR (Exact copy from Portfolio page) ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid rgba(180, 130, 60, 0.10);
    background: rgba(249, 247, 243, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: height 0.3s, background-color 0.3s;
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(245, 145, 40, 0.18);
    box-shadow: 0 4px 24px rgba(100, 60, 10, 0.08);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.45));
    transform: scale(1.03);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111318;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-logo:hover .nav-logo-text {
    text-shadow: 0 0 12px rgba(245, 145, 40, 0.22);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 101;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 0.8rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-link {
    text-decoration: none;
    color: #555c6e;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent, #f59128);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
    color: #111318;
    text-shadow: none;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #111318;
    text-shadow: none;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 22px;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}

.nav-cta:hover {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(245, 145, 40, 0.22);
    transform: translateY(-2px);
}

/* --- Premium Modern Sliding Theme Switcher --- */
.theme-toggle-slider {
    background: rgba(180, 130, 60, 0.06);
    border: 1px solid var(--border-color, rgba(180, 130, 60, 0.13));
    border-radius: 30px;
    width: 68px;
    height: 36px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 0 4px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    box-shadow: inset 0 2px 6px rgba(100, 60, 10, 0.05);
}

.theme-toggle-slider:hover {
    border-color: var(--accent);
    background: rgba(245, 145, 40, 0.06);
    transform: scale(1.03);
}

.slider-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.slider-thumb {
    width: 28px;
    height: 28px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s, box-shadow 0.4s;
    box-shadow: 0 3px 8px rgba(100, 60, 10, 0.15);
}

.dark-mode .slider-thumb {
    background: var(--accent);
    box-shadow: 0 0 12px rgba(245, 145, 40, 0.45);
}

.slider-thumb i {
    font-size: 0.85rem;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
}

/* Light mode: moon visible, sun hidden and rotated */
body:not(.dark-mode) .sun-icon {
    transform: rotate(-180deg);
    opacity: 0;
}

body:not(.dark-mode) .moon-icon {
    transform: rotate(0deg);
    opacity: 1;
    color: var(--text-dark-sub, #57534e);
}

/* Dark mode: sun visible, moon hidden, thumb translated to the right */
.dark-mode .theme-toggle-slider .slider-thumb {
    transform: translateX(32px);
}

.dark-mode .sun-icon {
    transform: rotate(0deg);
    opacity: 1;
    color: #ffffff;
}

.dark-mode .moon-icon {
    transform: rotate(180deg);
    opacity: 0;
}

.dark-mode .theme-toggle-slider {
    background: rgba(245, 145, 40, 0.1);
}

/* --- Mobile Menu Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-dark, #1c1917);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Nav Overlay */
@media (max-width: 768px) {
    .navbar {
        padding: 0 16px !important;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-logo-text {
        font-size: 15px !important;
    }

    .nav-logo-img {
        height: 32px !important;
    }

    .nav-cta {
        display: none !important;
    }

    .theme-toggle-slider {
        flex-shrink: 0;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-dark-2, #ffffff);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 1.2s cubic-bezier(0.85, 0, 0.15, 1);
        border-top: 1px solid var(--border-color, rgba(180, 130, 60, 0.13));
        z-index: 99;
    }

    .navbar.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

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

    .nav-logo {
        gap: 8px;
    }

    .nav-logo-text {
        font-size: 13px !important;
        letter-spacing: 0;
    }

    .theme-toggle-slider {
        width: 56px !important;
        height: 30px !important;
    }

    .slider-thumb {
        width: 24px !important;
        height: 24px !important;
    }

    .dark-mode .theme-toggle-slider .slider-thumb {
        transform: translateX(26px) !important;
    }
}

/* ========== STAT ITEM ========== */
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border-glass);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--text-dark);
  text-shadow: none;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== SERVICE TAG ========== */
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light-sub);
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: var(--transition-base);
}

.service-tag:hover {
  border-color: var(--primary);
  color: var(--text-dark);
  background: rgba(245, 145, 40, 0.05);
  box-shadow: 0 0 20px rgba(245, 145, 40, 0.2);
}

.service-tag .icon {
  font-size: 20px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

/* ========== MARQUEE ========== */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========== PROJECT CARD ========== */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-dark);
  border: 1px solid var(--border-glass);
  transition: var(--transition-spring);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 60, 0.4);
  box-shadow: var(--shadow-glow-accent);
}

.project-card-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.5) contrast(1.2);
  transition: var(--transition-base);
}

.project-card:hover .project-card-thumb {
  filter: grayscale(0) contrast(1);
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 1;
  /* Always visible */
}

.project-card-tag {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255, 0, 60, 0.5);
}

.project-card-title {
  font-family: 'General Sans', sans-serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
}

/* ========== TESTIMONIAL CARD ========== */
.testimonial-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 100px;
  font-family: 'General Sans', sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.stars {
  color: var(--accent-warm);
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
  color: var(--text-light-sub);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
  font-size: var(--text-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.author-name {
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: var(--text-lg);
}

.author-company {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: 'General Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== CLIENT LOGO ========== */
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-base);
  min-width: 200px;
}

.client-logo-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.client-name-text {
  font-family: 'General Sans', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-base);
}

.client-logo-item:hover .client-name-text {
  color: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-light);
  color: var(--text-dark-sub);
  padding: 100px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px rgba(245, 145, 40, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
  align-items: start;
}

.footer-brand {
  margin-top: -12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand a,
.footer-brand .navbar-logo,
.footer-brand .nav-logo {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.footer-brand img,
.footer-logo-img {
  width: 230px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 0;
  display: block;
}

.footer-brand p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin: 20px 0 28px;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 145, 40, 0.08);
  border: 1px solid rgba(180, 130, 60, 0.2);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--text-dark, #1c1917);
  transition: var(--transition-base);
  text-decoration: none;
  padding: 0 !important;
  box-sizing: border-box;
}

.social-link svg,
.social-link i {
  width: 20px !important;
  height: 20px !important;
  font-size: 20px !important;
  display: block !important;
  margin: auto !important;
  fill: currentColor !important;
  flex-shrink: 0 !important;
}

.social-link:hover {
  background: var(--accent, #f59128) !important;
  border-color: var(--accent, #f59128) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(245, 145, 40, 0.4) !important;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: var(--transition-fast);
  font-family: 'General Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-bottom {
  border-top: 1px solid rgba(180, 130, 60, 0.1);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: 'General Sans', sans-serif;
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-bottom-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: 'General Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding: 24px;
  }


  .stat-item:last-child {
    border-bottom: none;
  }
}

/* =============================================
   BORDERLESS / SEAMLESS STYLING (GLOBAL RESET)
   ============================================= */



/* Remove visible borders from buttons, cards, containers & badges */
.glass-card,
.service-card,
.testimonial-card,
.award-card-container,
.award-card-3d,
.stat-card,
.value-card,
.contact-card,
.contact-info-card,
.contact-form-card,
.faq-item,
.award-highlight-card,
.horizontal-card,
.human-gallery-card,
.highlight-item,
.stat-item,
.hero-stats,
.section-badge,
.award-chip,
.service-tag,
.pill-label,
.card-location-tag,
.about-badge-1,
.about-badge-2,
.btn-outline-dark,
.btn-outline-light,
.btn-primary,
.nav-cta,
.theme-toggle-slider,
.footer {
  border: none !important;
  outline: none !important;
}

.hero-stats::before,
.hero-stats::after,
.award-showcase-frame::before,
.award-showcase-frame::after,
.page-hero::after {
  display: none !important;
}

/* =============================================
   DARK MODE COMPREHENSIVE BORDERLESS STYLING
   ============================================= */

html.dark-mode,
body.dark-mode {
  background-color: #0a0908 !important;
  color: #f9f7f3 !important;
}

/* Navbar */
.dark-mode .navbar {
  background: rgba(14, 12, 10, 0.92) !important;
  border-bottom: none !important;
}

.dark-mode .navbar.scrolled {
  background: rgba(10, 8, 6, 0.97) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6) !important;
}

.dark-mode .nav-logo-text {
  color: #f9f7f3 !important;
}

.dark-mode .nav-link {
  color: #dcd7cd !important;
}

.dark-mode .nav-link:hover,
.dark-mode .nav-link.active {
  color: var(--accent, #f59128) !important;
}

.dark-mode .menu-toggle span {
  background-color: #f9f7f3 !important;
}

/* Page Sections & Backgrounds */
.dark-mode section,
.dark-mode .section,
.dark-mode .section--dark,
.dark-mode .section--dark-2,
.dark-mode .section--light,
.dark-mode .section--light-2,
.dark-mode .section--cream,
.dark-mode .hero-section,
.dark-mode .about-teaser,
.dark-mode .services-strip,
.dark-mode .services-section,
.dark-mode .horizontal-showcase,
.dark-mode .award-showcase-frame,
.dark-mode .award-gallery-strip,
.dark-mode .why-choose-section,
.dark-mode .testimonials-section,
.dark-mode .cta-section,
.dark-mode .page-hero,
.dark-mode .about-section,
.dark-mode .contact-section,
.dark-mode #award-frame,
.dark-mode #award-gallery-block {
  background-color: #0a0908 !important;
  background: #0a0908 !important;
  color: #f9f7f3 !important;
}

.dark-mode .mesh-bg {
  background: radial-gradient(circle at 50% 0%, rgba(245, 145, 40, 0.08), transparent 70%),
    radial-gradient(circle at 100% 100%, rgba(220, 120, 30, 0.05), transparent 60%) !important;
}

.dark-mode .hero-video-overlay {
  background: linear-gradient(to right, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.7) 50%, rgba(10, 9, 8, 0.4) 100%) !important;
}

.dark-mode .hero-section::after {
  background: linear-gradient(to top, #0a0908 0%, transparent 100%) !important;
}

.dark-mode .award-ambient-glow {
  background: radial-gradient(circle at 50% 50%, rgba(245, 145, 40, 0.15), transparent 70%) !important;
}

/* Headings & Text */
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode .display-heading,
.dark-mode .section-heading,
.dark-mode .sub-heading,
.dark-mode .page-title,
.dark-mode .caption-title,
.dark-mode .service-card-title,
.dark-mode .award-card-title,
.dark-mode .contact-card-title,
.dark-mode .faq-question,
.dark-mode .card-caption-title,
.dark-mode .highlight-title,
.dark-mode .stat-number,
.dark-mode .strip-label {
  color: #f9f7f3 !important;
}

.dark-mode p,
.dark-mode .body-lg,
.dark-mode .body-base,
.dark-mode .text-muted-dark,
.dark-mode .text-muted-light,
.dark-mode .page-subtitle,
.dark-mode .service-card-desc,
.dark-mode .testimonial-text,
.dark-mode .contact-info-text,
.dark-mode .faq-answer,
.dark-mode .card-caption-sub,
.dark-mode .caption-sub,
.dark-mode .stat-label,
.dark-mode .highlight-desc {
  color: #dcd7cd !important;
}

.dark-mode .divider {
  background: linear-gradient(90deg, var(--accent, #f59128), transparent) !important;
}

/* Cards & Glass Containers (Seamless Dark Fills, No Outlines) */
.dark-mode .glass-card,
.dark-mode .service-card,
.dark-mode .testimonial-card,
.dark-mode .award-card-container,
.dark-mode .award-card-3d,
.dark-mode .stat-card,
.dark-mode .value-card,
.dark-mode .contact-card,
.dark-mode .contact-info-card,
.dark-mode .contact-form-card,
.dark-mode .faq-item,
.dark-mode .award-highlight-card,
.dark-mode .horizontal-card,
.dark-mode .human-gallery-card,
.dark-mode .highlight-item,
.dark-mode .stat-item,
.dark-mode .hero-stats {
  background: rgba(22, 19, 15, 0.9) !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
  color: #f9f7f3 !important;
}

.dark-mode .glass-card:hover,
.dark-mode .service-card:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .contact-card:hover,
.dark-mode .faq-item:hover,
.dark-mode .horizontal-card:hover,
.dark-mode .human-gallery-card:hover,
.dark-mode .highlight-item:hover {
  border: none !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.7) !important;
  transform: translateY(-4px);
}

/* Badges & Chips (Borderless) */
.dark-mode .section-badge,
.dark-mode .award-chip,
.dark-mode .service-tag,
.dark-mode .pill-label,
.dark-mode .card-location-tag,
.dark-mode .about-badge-1,
.dark-mode .about-badge-2 {
  background: rgba(245, 145, 40, 0.15) !important;
  border: none !important;
  color: var(--accent, #f59128) !important;
}

/* Form Inputs & Selects */
.dark-mode .form-input,
.dark-mode .form-textarea,
.dark-mode .form-select {
  background: rgba(28, 24, 19, 0.95) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.dark-mode .form-input:hover,
.dark-mode .form-textarea:hover,
.dark-mode .form-select:hover {
  border: 1.5px solid rgba(245, 145, 40, 0.6) !important;
}

.dark-mode .form-input:focus,
.dark-mode .form-textarea:focus,
.dark-mode .form-select:focus {
  border: 1.5px solid var(--accent, #f59128) !important;
  box-shadow: 0 0 20px rgba(245, 145, 40, 0.35) !important;
}

.dark-mode .floating-label-group .form-input:focus~.form-label,
.dark-mode .floating-label-group .form-input:not(:placeholder-shown)~.form-label {
  background: rgba(22, 19, 15, 0.95) !important;
  color: var(--accent, #f59128) !important;
}

.dark-mode .form-label {
  color: #f9f7f3 !important;
}

/* Buttons (Borderless Fills) */
.btn-outline-dark,
.btn-outline-light,
.nav-cta {
  border: none !important;
  background: rgba(255, 255, 255, 0.12);
}

.dark-mode .btn-outline-dark,
.dark-mode .btn-outline-light,
.dark-mode .nav-cta {
  border: none !important;
  color: #f9f7f3 !important;
  background: rgba(245, 145, 40, 0.16) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline-dark:hover,
.btn-outline-light:hover,
.dark-mode .btn-outline-dark:hover,
.dark-mode .btn-outline-light:hover,
.dark-mode .nav-cta:hover {
  background: var(--accent, #f59128) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(245, 145, 40, 0.45) !important;
}

.dark-mode .service-card-link {
  color: var(--accent, #f59128) !important;
}

/* Preloader & Footer */
.dark-mode #preloader {
  background: #0a0908 !important;
}

.dark-mode .preloader-tagline,
.dark-mode .preloader-counter {
  color: #f9f7f3 !important;
}

.dark-mode .footer {
  background-color: #060504 !important;
  border-top: none !important;
}

.dark-mode .footer-col-title {
  color: #f9f7f3 !important;
}

.dark-mode .footer-links a,
.dark-mode .footer-brand p,
.dark-mode .footer-bottom p {
  color: #a8a29e !important;
}

.dark-mode .footer-links a:hover {
  color: var(--accent, #f59128) !important;
}