:root {
  --primary: #E31E24;
  --primary-dark: #5B21B6;
  --secondary: #000000;
  --secondary-dark: #0F766E;
  --accent: #FFFFFF;
  --bg-dark: #0A0A0A;
  --bg-glass: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.1);
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;

  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: #F9FAFB;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(200, 200, 200, 0.15) 0%, transparent 50%);
  z-index: -1;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {

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

  50% {
    transform: rotate(180deg) scale(1.2);
  }
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(227, 30, 36, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, #E31E24, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(227, 30, 36, 0.4);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(227, 30, 36, 0.3);
}

.nav-link {
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

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

.folder-tab {
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}

.folder-tab.active {
  border-bottom-color: var(--accent);
}

.folder-tab.active span {
  background: linear-gradient(135deg, #E31E24, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-panel {
  display: none;
  animation: panelFadeIn 0.4s ease;
}

.service-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.folder-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.stats-card {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(200, 200, 200, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
  transition: all 0.3s;
}

.contact-info-item:hover {
  transform: translateX(6px);
}

@media(max-width:768px) {
  .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            max-height: 85vh;
            background: rgba(15, 10, 30, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-right: none !important;
            z-index: 100;
            padding: 24px;
            transform: translateY(-150%) !important;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            backdrop-filter: blur(20px);
        }

        .mobile-menu.open {
            transform: translateY(0) !important;
        }
}

.svc-web .folder-icon {
  background: linear-gradient(135deg, #1D4ED8, #3B82F6);
}

.svc-app .folder-icon {
  background: linear-gradient(135deg, #D97706, #F59E0B);
}

.svc-full .folder-icon {
  background: linear-gradient(135deg, #059669, #10B981);
}

.svc-ecom .folder-icon {
  background: linear-gradient(135deg, #BE185D, #8B0000);
}

.svc-web:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
}

.svc-app:hover {
  border-color: rgba(245, 158, 11, 0.4) !important;
}

.svc-full:hover {
  border-color: rgba(16, 185, 129, 0.4) !important;
}

.svc-ecom:hover {
  border-color: rgba(236, 72, 153, 0.4) !important;
}

/* SEO Tool */
.seo-score-ring {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.seo-score-circle {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.seo-metric-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.seo-metric-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.seo-metric-fill.good {
  background: linear-gradient(90deg, #059669, #E31E24);
}

.seo-metric-fill.medium {
  background: linear-gradient(90deg, #D97706, #FFFFFF);
}

.seo-metric-fill.bad {
  background: linear-gradient(90deg, #DC2626, #F87171);
}

.seo-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin: 2px;
}

.seo-tag.good {
  background: rgba(5, 150, 105, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #E31E24;
}

.seo-tag.warn {
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FFFFFF;
}

.seo-tag.bad {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #F87171;
}

@keyframes seoFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-result-item {
  animation: seoFadeUp 0.4s ease forwards;
  opacity: 0;
}

.seo-result-item:nth-child(1) {
  animation-delay: 0.1s;
}

.seo-result-item:nth-child(2) {
  animation-delay: 0.2s;
}

.seo-result-item:nth-child(3) {
  animation-delay: 0.3s;
}

.seo-result-item:nth-child(4) {
  animation-delay: 0.4s;
}

.seo-result-item:nth-child(5) {
  animation-delay: 0.5s;
}

.seo-result-item:nth-child(6) {
  animation-delay: 0.6s;
}

.pulse-ring {
  animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

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

.loading-dots span {
  display: inline-block;
  animation: dotBounce 1.2s ease infinite;
}

.loading-dots span:nth-child(1) {
  animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {

  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.seo-input-glow:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15) !important;
}

/* Pricing */
.pkg-card {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(227, 30, 36, 0.35);
}

.pkg-popular {
  position: relative;
}

.pkg-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Case Studies */
.case-card {
  transition: all 0.3s;
}

.case-card:hover {
  transform: translateY(-5px);
}

.progress-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  animation: modalFloat 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalFloat {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.93) rotateX(6deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Dashboard */
.dash-tab {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.83rem;
  font-weight: 600;
  transition: all 0.2s;
  color: rgba(209, 213, 219, 0.6);
}

.dash-tab.active {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.3), rgba(200, 200, 200, 0.2));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer-main {
  background: linear-gradient(180deg, rgba(15, 10, 30, 0) 0%, rgba(10, 6, 20, 0.85) 8%, rgba(8, 5, 18, 0.88) 100%);
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.6), rgba(200, 200, 200, 0.6), transparent);
}

.footer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
}

.footer-brand-name {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #C4B5FD 50%, #5EEAD4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.footer-contact-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateX(4px);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
}

.footer-social-btn.fb:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.5);
}

.footer-social-btn.li:hover {
  background: rgba(10, 102, 194, 0.2);
  border-color: rgba(10, 102, 194, 0.5);
}

.footer-social-btn.wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
}

.footer-social-btn.em:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-social-btn.yt:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.5);
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(209, 213, 219, 0.65);
  text-decoration: none;
  padding: 5px 0;
  transition: all 0.25s;
}

.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: all 0.25s;
}

.footer-link:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-link:hover::before {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px 0 0 10px;
  padding: 11px 16px;
  font-size: 0.83rem;
  color: #F9FAFB;
  outline: none;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
  color: rgba(156, 163, 175, 0.55);
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 11px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(209, 213, 219, 0.7);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.08) 80%, transparent);
}

.footer-bottom-link {
  font-size: 0.78rem;
  color: rgba(156, 163, 175, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: rgba(209, 213, 219, 0.9);
}

.trust-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(156, 163, 175, 0.65);
}




/* ===== 3D GLOBE SLIDES ===== */
.slide3d {
  cursor: none;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  border-radius: 24px !important;
}

.slide-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.38), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 0;
}

.slide-inner {
  position: relative;
  z-index: 1;
  padding: 20px 24px;
  transform-style: preserve-3d;
  transition: transform 0.08s ease, box-shadow 0.1s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.circle-ring {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.circle-badge {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.slide-title {
  font-size: 1rem;
  font-weight: 700;
  color: #F9FAFB;
  line-height: 1.2;
}

.slide-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #9CA3AF;
  margin-top: 1px;
}

.bars-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar-lbl {
  font-size: 0.65rem;
  color: #9CA3AF;
  width: 85px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar-fill {
  height: 5px;
  border-radius: 999px;
  transition: width 1s ease;
}

.bar-val {
  font-size: 0.65rem;
  font-weight: 700;
  width: 42px;
  text-align: right;
  flex-shrink: 0;
}

.slide-foot {
  font-size: 0.72rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.stats4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.s4box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: background 0.2s;
}

.s4num {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818CF8, #E31E24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.s4lbl {
  font-size: 0.62rem;
  color: #9CA3AF;
  margin-top: 3px;
}

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

.kw-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
}

.kw-pos {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.kw-word {
  flex: 1;
  font-size: 0.75rem;
  color: #E5E7EB;
}

.kw-change {
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rev-chart {
  margin: 2px 0;
}

.rev-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  margin-bottom: 4px;
}

.rev-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  transition: height 0.8s ease;
}

.rev-months {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: #6B7280;
}

.rev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.rev-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

/* Circle Widget */

.slot-btn {
  padding: 9px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D1D5DB;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.slot-btn:hover {
  background: rgba(227, 30, 36, 0.2);
  border-color: rgba(227, 30, 36, 0.4);
  color: #A78BFA;
}

.active-slot {
  background: rgba(227, 30, 36, 0.25) !important;
  border-color: rgba(227, 30, 36, 0.6) !important;
  color: #A78BFA !important;
  font-weight: 700;
}

@keyframes circleMenuIn {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes dotPulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

/* Stats Card 3D Tilt */

/* Circle Widget */

.slot-btn {
  padding: 9px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #D1D5DB;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.slot-btn:hover {
  background: rgba(227, 30, 36, 0.2);
  border-color: rgba(227, 30, 36, 0.4);
  color: #A78BFA;
}

.active-slot {
  background: rgba(227, 30, 36, 0.25) !important;
  border-color: rgba(227, 30, 36, 0.6) !important;
  color: #A78BFA !important;
  font-weight: 700;
}

@keyframes circleMenuIn {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes dotPulse {

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

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

#statsSlide {
  perspective: 900px;
}

/* Glitch / Tilt Effect on Hero Slider */
.hero-slides {
  perspective: 1000px;
}

.hero-slide {
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.hero-tilt {
  transform-style: preserve-3d;
}

/* Glitch text effect */
@keyframes glitch1 {

  0%,
  100% {
    clip-path: inset(0 0 95% 0);
    transform: translateX(-3px);
  }

  20% {
    clip-path: inset(20% 0 60% 0);
    transform: translateX(3px);
  }

  40% {
    clip-path: inset(50% 0 30% 0);
    transform: translateX(-2px);
  }

  60% {
    clip-path: inset(80% 0 5% 0);
    transform: translateX(2px);
  }
}

@keyframes glitch2 {

  0%,
  100% {
    clip-path: inset(60% 0 20% 0);
    transform: translateX(3px);
  }

  20% {
    clip-path: inset(10% 0 80% 0);
    transform: translateX(-3px);
  }

  40% {
    clip-path: inset(30% 0 50% 0);
    transform: translateX(2px);
  }

  60% {
    clip-path: inset(5% 0 90% 0);
    transform: translateX(-2px);
  }
}

.glitch-num {
  position: relative;
  display: inline-block;
}

.glitch-num::before,
.glitch-num::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: inherit;
}

.glitch-num::before {
  animation: glitch1 3s infinite;
  color: #E31E24;
  opacity: 0.6;
}

.glitch-num::after {
  animation: glitch2 3s infinite;
  color: #FFFFFF;
  opacity: 0.6;
}

.hero-slide:hover .glitch-num::before,
.hero-slide:hover .glitch-num::after {
  animation-play-state: running;
}

.hero-slide:not(:hover) .glitch-num::before,
.hero-slide:not(:hover) .glitch-num::after {
  animation-play-state: paused;
}

/* Hero Slider */
.hero-slider {
  position: relative;
}

.hero-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.hero-dot {
  cursor: pointer;
}


@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%)
  }
}

.client-logo {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.client-logo:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.clients-scroll-wrapper:hover #clientsTrack {
  animation-play-state: paused;
}

/* 3D Dots Background */
#dots-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#dots-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

section,
nav,
.footer-main,
footer {
  position: relative;
  z-index: 1;
}

/* Scrolling Stats Bar */
.stats-scroll-wrapper {
  background: rgba(8, 5, 18, 0.97);
  padding: 35px 0;
  border-top: 1px solid rgba(227, 30, 36, 0.15);
  border-bottom: 1px solid rgba(227, 30, 36, 0.15);
  overflow: hidden;
  position: relative;
}

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

.stats-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(8, 5, 18, 1), transparent);
}

.stats-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(8, 5, 18, 1), transparent);
}

.stats-scroll-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scrollStats 45s linear infinite;
}

.stats-scroll-wrapper:hover .stats-scroll-track {
  animation-play-state: paused;
}

@keyframes scrollStats {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stat-story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  margin: 0 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  flex-shrink: 0;
  cursor: pointer;
  min-width: 280px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, #E31E24, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-story-card:hover {
  background: rgba(227, 30, 36, 0.04);
  border-color: rgba(227, 30, 36, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px -10px rgba(227, 30, 36, 0.15);
}

.stat-story-card:hover::before {
  opacity: 1;
}

.stat-logo-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.stat-logo-pill {
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.6rem;
  font-weight: 600;
  color: #D1D5DB;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.stat-story-card:hover .stat-logo-pill {
  background: rgba(227, 30, 36, 0.15);
  border-color: rgba(227, 30, 36, 0.3);
  color: #FFFFFF;
}

.stat-story-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, #E31E24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-story-desc {
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.8);
  max-width: 180px;
  line-height: 1.4;
  margin-top: 6px;
}

.stat-story-link {
  font-size: 0.75rem;
  color: #E31E24;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-story-card:hover .stat-story-link {
  gap: 8px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--secondary) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* ===== BRAND NAME MONOTYPE STYLE ===== */
.brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}

.brand-main {
  font-family: 'Major Mono Display', monospace;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #C4B5FD 50%, #5EEAD4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s;
}

.brand-ghost {
  font-family: 'Major Mono Display', monospace;
  font-weight: 400;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 2px;
  padding-left: 1px;
  transition: color 0.3s;
}

.brand-wrap:hover .brand-ghost {
  color: rgba(255, 255, 255, 0.45);
}

/* ===== ANIMATED LOGO ===== */
.vm-logo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.vm-ring-1 {
  width: 80px;
  height: 80px;
  border-top-color: rgba(227, 30, 36, 0.85);
  border-right-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: transparent;
  border-left-color: rgba(227, 30, 36, 0.3);
  animation: vmSpin1 3s linear infinite;
}

.vm-ring-2 {
  width: 66px;
  height: 66px;
  border-top-color: transparent;
  border-right-color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(227, 30, 36, 0.5);
  border-left-color: transparent;
  animation: vmSpin2 2s linear infinite reverse;
}

.vm-logo-inner {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vm-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  transform: none;
}

@keyframes vmSpin1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes vmSpin2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.vm-logo-wrap:hover .vm-ring-1 {
  animation-duration: 1s;
}

.vm-logo-wrap:hover .vm-ring-2 {
  animation-duration: 0.7s;
}

@keyframes vmSpin1 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes vmSpin2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Logo image style */
.nav-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s, filter 0.3s;
  filter: drop-shadow(0 2px 10px rgba(227, 30, 36, 0.25));
}

.nav-logo:hover {
  transform: scale(1.05);
}

/* Remove white bg - use screen blend */
.logo-wrap {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 10px;
}

#seoResults .grid {
  grid-template-columns: 1fr !important;
}

.rev-bars {
  height: 48px !important;
}



/* Animated Brand Name */
.vm-brand-text {
  font-family: 'Major Mono Display', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #06B6D4 50%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  display: inline-block;
}

.vm-brand-slide {
  animation: brandSlide 4s ease-in-out infinite;
}

@keyframes brandSlide {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  15% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(0);
    opacity: 1;
  }

  90% {
    transform: translateY(100%);
    opacity: 0;
  }

  91% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes vmSlide {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  12% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(0);
    opacity: 1;
  }

  90% {
    transform: translateY(100%);
    opacity: 0;
  }

  91% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* Services Pages CSS */
.hero {
            position: relative;
            height: 320px;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.22);
        }

        .ho {
            position: absolute;
            inset: 0;
        }

        .ht {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 24px;
        }

        .hi {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

        .back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
        }

        .back:hover {
            color: #fff;
        }

        h1.ph {
            font-size: clamp(1.6rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .gt {
            background: linear-gradient(135deg, #E31E24, #FFFFFF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-top: 10px;
            max-width: 600px;
        }

        .wrap {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px 60px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 8px;
        }

        .section-sub {
            color: #9CA3AF;
            text-align: center;
            font-size: 0.83rem;
            margin-bottom: 28px;
        }

        .card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 24px;
        }

        .g2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .g3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        @media(max-width:580px) {
            .g2 {
                grid-template-columns: 1fr;
            }

            .g3 {
                grid-template-columns: 1fr;
            }
        }

        @media(min-width:581px) and (max-width:820px) {
            .g3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 13px 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.86rem;
            color: #D1D5DB;
        }

        .ck {
            color: #E31E24;
            flex-shrink: 0;
            font-weight: 700;
        }

        .img-text-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            margin-bottom: 50px;
        }

        .img-text-row.reverse {
            direction: rtl;
        }

        .img-text-row.reverse>* {
            direction: ltr;
        }

        .img-box {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .img-box img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }

        .img-box:hover img {
            transform: scale(1.04);
        }

        .text-box h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .text-box p {
            color: #9CA3AF;
            font-size: 0.87rem;
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .text-box ul {
            list-style: none;
            padding: 0;
        }

        .text-box ul li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 0.84rem;
            color: #D1D5DB;
            margin-bottom: 8px;
        }

        .text-box ul li::before {
            content: "—";
            color: #E31E24;
            font-weight: 700;
            flex-shrink: 0;
        }

        @media(max-width:700px) {
            .img-text-row {
                grid-template-columns: 1fr;
            }

            .img-text-row.reverse {
                direction: ltr;
            }
        }

        .img-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin: 30px 0;
        }

        .img-gallery .gal-item {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .img-gallery .gal-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }

        .img-gallery .gal-item:hover img {
            transform: scale(1.06);
        }

        @media(max-width:580px) {
            .img-gallery {
                grid-template-columns: 1fr;
            }
        }

        @media(min-width:581px) and (max-width:820px) {
            .img-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 28px 0;
        }

        .step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            margin: 0 auto 12px;
        }

        .step h4 {
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .step p {
            font-size: 0.77rem;
            color: #9CA3AF;
            line-height: 1.6;
        }

        @media(max-width:700px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin: 28px 0;
        }

        .stat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }

        .stat-num {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E31E24, #FFFFFF);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-lbl {
            font-size: 0.78rem;
            color: #9CA3AF;
            margin-top: 4px;
        }

        @media(max-width:580px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: transform 0.25s, border-color 0.25s;
        }

        .why-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 0, 0, 0.4);
        }

        .why-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.2rem;
        }

        .why-card h4 {
            font-size: 0.92rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.8rem;
            color: #9CA3AF;
            line-height: 1.7;
        }

        .pkg {
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            transition: transform 0.25s;
        }

        .pkg:hover {
            transform: translateY(-6px);
        }

        .pkg-n {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pkg-p {
            font-size: 2.1rem;
            font-weight: 800;
            color: #F9FAFB;
            margin-bottom: 12px;
        }

        .pkg-li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: #D1D5DB;
            margin-bottom: 7px;
        }

        .pkg-btn {
            display: block;
            padding: 11px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            margin-top: 14px;
            cursor: pointer;
            border: none;
            width: 100%;
            transition: opacity 0.2s;
        }

        .pkg-btn:hover {
            opacity: 0.9;
        }

        .testi {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
        }

        .testi-stars {
            color: #F59E0B;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .testi-text {
            font-size: 0.84rem;
            color: #D1D5DB;
            line-height: 1.8;
            margin-bottom: 14px;
            font-style: italic;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testi-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
        }

        .testi-name {
            font-size: 0.82rem;
            font-weight: 700;
        }

        .testi-role {
            font-size: 0.73rem;
            color: #9CA3AF;
        }

        .contact-section {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 44px 36px;
            margin: 50px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        @media(max-width:700px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .contact-info p {
            color: #9CA3AF;
            font-size: 0.86rem;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            padding: 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-label {
            font-size: 0.73rem;
            color: #9CA3AF;
            margin-bottom: 2px;
        }

        .contact-val {
            font-size: 0.87rem;
            font-weight: 600;
            color: #F9FAFB;
        }

        .faq {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 16px 18px;
            cursor: pointer;
            margin-bottom: 9px;
            transition: border-color 0.2s;
        }

        .faq:hover {
            border-color: rgba(0, 0, 0, 0.3);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .faq-q h4 {
            font-weight: 600;
            font-size: 0.87rem;
            color: #F9FAFB;
        }

        .faq-a {
            display: none;
            margin-top: 10px;
            color: #9CA3AF;
            font-size: 0.83rem;
            line-height: 1.7;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(227, 30, 36, 0.14), rgba(0, 0, 0, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 22px;
            padding: 42px;
            text-align: center;
            margin-top: 44px;
        }

        .cta-box h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-box p {
            color: #9CA3AF;
            font-size: 0.87rem;
            margin-bottom: 22px;
        }

        .btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .btn-m {
            padding: 13px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            font-weight: 700;
            font-size: 0.88rem;
            color: #fff;
            cursor: pointer;
            border: none;
        }

        .btn-w {
            padding: 13px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            font-weight: 700;
            font-size: 0.88rem;
            color: #fff;
        }

        .wa-fab {
            position: fixed;
            bottom: 22px;
            right: 22px;
            z-index: 40;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s;
        }

        .wa-fab:hover {
            transform: scale(1.1);
        }

        .divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin: 50px 0;
        }

        .rel-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: transform 0.25s, border-color 0.25s;
        }

        .rel-card:hover {
            transform: translateY(-5px);
            border-color: rgba(227, 30, 36, 0.4);
        }

        .rel-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .rel-card p {
            font-size: 0.78rem;
            color: #9CA3AF;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .rel-btn {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.4);
            color: #E31E24;
            font-size: 0.78rem;
            font-weight: 600;
            transition: background 0.2s;
        }

        .rel-btn:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .badge-tag {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            color: #fff;
            font-size: 0.62rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .badge {
            display: inline-block;
            padding: 4px 14px;
            border-radius: 999px;
            background: rgba(227, 30, 36, 0.2);
            border: 1px solid rgba(227, 30, 36, 0.35);
            color: #A78BFA;
            font-size: 0.72rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .rel-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        footer {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 20px;
            text-align: center;
            font-size: 0.78rem;
            color: #6B7280;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        footer a {
            color: #E31E24;
        }

        ::-webkit-scrollbar {
            width: 7px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#E31E24, #000000);
            border-radius: 10px;
        }

        .om-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .om-overlay.open {
            display: flex;
        }

        .om-box {
            background: #1a1030;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 32px;
            width: 100%;
            max-width: 460px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
        }

        .om-box h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #F9FAFB;
        }

        .om-pkg {
            font-size: 0.82rem;
            color: #E31E24;
            margin-bottom: 20px;
            display: block;
        }

        .om-field {
            margin-bottom: 14px;
        }

        .om-field label {
            display: block;
            font-size: 0.75rem;
            color: #9CA3AF;
            margin-bottom: 5px;
        }

        .om-field input,
        .om-field textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 0.84rem;
            color: #F9FAFB;
            outline: none;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .om-field input:focus,
        .om-field textarea:focus {
            border-color: #E31E24;
        }

        .om-field textarea {
            resize: vertical;
            min-height: 75px;
        }

        .om-btns {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .om-cancel {
            flex: 1;
            padding: 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #D1D5DB;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .om-send {
            flex: 2;
            padding: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
        }

        .om-note {
            text-align: center;
            font-size: 0.72rem;
            color: #6B7280;
            margin-top: 12px;
        }

        .contact-form h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .form-group {
            margin-bottom: 14px;
        }

        .form-group label {
            display: block;
            font-size: 0.75rem;
            color: #9CA3AF;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 0.84rem;
            color: #F9FAFB;
            outline: none;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #E31E24;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }

        .form-group select {
            background: rgba(15, 10, 30, 0.9);
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 13px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            color: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 6px;
            font-family: inherit;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }
    



/* services css */


        a {
            text-decoration: none;
            color: inherit;
        }

        .nav-main {
            background: rgba(15, 10, 30, 0.96);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            padding: 14px 24px;
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo img {
            height: 52px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .nav-logo img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .nav-link {
            font-size: 0.87rem;
            font-weight: 500;
            color: #D1D5DB;
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
            padding: 6px 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #E31E24, #000000);
            transition: width 0.3s;
        }

        .nav-link:hover {
            color: #fff;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: #000000;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.87rem;
            font-weight: 500;
            color: #D1D5DB;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px 0;
            font-family: inherit;
            transition: color 0.3s;
        }

        .nav-dropdown-btn:hover {
            color: #fff;
        }

        .nav-dropdown-btn i {
            font-size: 0.65rem;
            transition: transform 0.3s;
        }

        .nav-dropdown:hover .nav-dropdown-btn i {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            width: 220px;
            background: rgba(8, 5, 18, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            font-size: 0.83rem;
            color: #D1D5DB;
            transition: all 0.2s;
        }

        .nav-dropdown-menu a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-dropdown-menu a i {
            font-size: 0.75rem;
            width: 16px;
            flex-shrink: 0;
        }

        .nav-btn {
            padding: 9px 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            font-size: 0.83rem;
            font-weight: 700;
            color: #fff;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
        }

        .nav-mobile-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.4rem;
            cursor: pointer;
        }
.mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            max-height: 85vh;
            background: rgba(15, 10, 30, 0.98);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            border-right: none !important;
            z-index: 100;
            padding: 24px;
            transform: translateY(-150%) !important;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            backdrop-filter: blur(20px);
        }

        .mobile-menu.open {
            transform: translateY(0) !important;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-top: 20px;
        }

        .mobile-menu-links a {
            font-size: 0.9rem;
            color: #D1D5DB;
            padding: 10px 12px;
            border-radius: 10px;
            transition: all 0.2s;
        }

        .mobile-menu-links a:hover {
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .mobile-section-title {
            font-size: 0.7rem;
            font-weight: 700;
            color: #6B7280;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 10px 12px 4px;
        }

        @media(max-width:900px) {
            .nav-links {
                display: none;
            }

            .nav-mobile-btn {
                display: block;
            }
        }

        .hero {
            position: relative;
            height: 320px;
            overflow: hidden;
            margin-top: 80px;
        }

        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.22);
        }

        .ho {
            position: absolute;
            inset: 0;
        }

        .ht {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 24px;
        }

        .hi {
            max-width: 900px;
            margin: 0 auto;
            width: 100%;
        }

        .back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 12px;
        }

        .back:hover {
            color: #fff;
        }

        h1.ph {
            font-size: clamp(1.6rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .gt {
            background: linear-gradient(135deg, #E31E24, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            margin-top: 10px;
            max-width: 600px;
        }

        .wrap {
            max-width: 1000px;
            margin: 0 auto;
            padding: 50px 20px 60px;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 8px;
        }

        .section-sub {
            color: #9CA3AF;
            text-align: center;
            font-size: 0.83rem;
            margin-bottom: 28px;
        }

        .card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
            padding: 24px;
        }

        .g2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .g3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        @media(max-width:580px) {
            .g2 {
                grid-template-columns: 1fr;
            }

            .g3 {
                grid-template-columns: 1fr;
            }
        }

        @media(min-width:581px) and (max-width:820px) {
            .g3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 13px 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.86rem;
            color: #D1D5DB;
        }

        .ck {
            color: #000000;
            flex-shrink: 0;
            font-weight: 700;
        }

        .img-text-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
            margin-bottom: 50px;
        }

        .img-text-row.reverse {
            direction: rtl;
        }

        .img-text-row.reverse>* {
            direction: ltr;
        }

        .img-box {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .img-box img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }

        .img-box:hover img {
            transform: scale(1.04);
        }

        .text-box h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .text-box p {
            color: #9CA3AF;
            font-size: 0.87rem;
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .text-box ul {
            list-style: none;
            padding: 0;
        }

        .text-box ul li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 0.84rem;
            color: #D1D5DB;
            margin-bottom: 8px;
        }

        .text-box ul li::before {
            content: "—";
            color: #000000;
            font-weight: 700;
            flex-shrink: 0;
        }

        @media(max-width:700px) {
            .img-text-row {
                grid-template-columns: 1fr;
            }

            .img-text-row.reverse {
                direction: ltr;
            }
        }

        .img-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            margin: 30px 0;
        }

        .img-gallery .gal-item {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .img-gallery .gal-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }

        .img-gallery .gal-item:hover img {
            transform: scale(1.06);
        }

        @media(max-width:580px) {
            .img-gallery {
                grid-template-columns: 1fr;
            }
        }

        @media(min-width:581px) and (max-width:820px) {
            .img-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 28px 0;
        }

        .step {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            color: #fff;
            margin: 0 auto 12px;
        }

        .step h4 {
            font-size: 0.88rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .step p {
            font-size: 0.77rem;
            color: #9CA3AF;
            line-height: 1.6;
        }

        @media(max-width:700px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin: 28px 0;
        }

        .stat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }

        .stat-num {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E31E24, #000000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-lbl {
            font-size: 0.78rem;
            color: #9CA3AF;
            margin-top: 4px;
        }

        @media(max-width:580px) {
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: transform 0.25s, border-color 0.25s;
        }

        .why-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 0, 0, 0.4);
        }

        .why-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }

        .why-icon i {
            color: #fff;
            font-size: 1.1rem;
        }

        .why-card h4 {
            font-size: 0.92rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.8rem;
            color: #9CA3AF;
            line-height: 1.7;
        }

        .pkg {
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            transition: transform 0.25s;
        }

        .pkg:hover {
            transform: translateY(-6px);
        }

        .pkg-n {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pkg-p {
            font-size: 2.1rem;
            font-weight: 800;
            color: #F9FAFB;
            margin-bottom: 12px;
        }

        .pkg-li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: #D1D5DB;
            margin-bottom: 7px;
        }

        .pkg-btn {
            display: block;
            padding: 11px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            margin-top: 14px;
            cursor: pointer;
            border: none;
            width: 100%;
            transition: opacity 0.2s;
        }

        .pkg-btn:hover {
            opacity: 0.9;
        }

        .testi {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
        }

        .testi-stars {
            color: #F59E0B;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .testi-text {
            font-size: 0.84rem;
            color: #D1D5DB;
            line-height: 1.8;
            margin-bottom: 14px;
            font-style: italic;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .testi-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
        }

        .testi-name {
            font-size: 0.82rem;
            font-weight: 700;
        }

        .testi-role {
            font-size: 0.73rem;
            color: #9CA3AF;
        }

        .contact-section {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 44px 36px;
            margin: 50px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        @media(max-width:700px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-info h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .contact-info p {
            color: #9CA3AF;
            font-size: 0.86rem;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            padding: 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 12px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #E31E24, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-label {
            font-size: 0.73rem;
            color: #9CA3AF;
            margin-bottom: 2px;
        }

        .contact-val {
            font-size: 0.87rem;
            font-weight: 600;
            color: #F9FAFB;
        }

        .faq {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 16px 18px;
            cursor: pointer;
            margin-bottom: 9px;
            transition: border-color 0.2s;
        }

        .faq:hover {
            border-color: rgba(0, 0, 0, 0.3);
        }

        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .faq-q h4 {
            font-weight: 600;
            font-size: 0.87rem;
            color: #F9FAFB;
        }

        .faq-a {
            display: none;
            margin-top: 10px;
            color: #9CA3AF;
            font-size: 0.83rem;
            line-height: 1.7;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(227, 30, 36, 0.14), rgba(0, 0, 0, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 22px;
            padding: 42px;
            text-align: center;
            margin-top: 44px;
        }

        .cta-box h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-box p {
            color: #9CA3AF;
            font-size: 0.87rem;
            margin-bottom: 22px;
        }

        .btns {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }

        .btn-m {
            padding: 13px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            font-weight: 700;
            font-size: 0.88rem;
            color: #fff;
            cursor: pointer;
            border: none;
        }

        .btn-w {
            padding: 13px 28px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            font-weight: 700;
            font-size: 0.88rem;
            color: #fff;
        }

        .wa-fab {
            position: fixed;
            bottom: 22px;
            right: 22px;
            z-index: 40;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25D366, #128C7E);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s;
        }

        .wa-fab:hover {
            transform: scale(1.1);
        }

        .divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin: 50px 0;
        }

        .rel-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 22px;
            text-align: center;
            transition: transform 0.25s, border-color 0.25s;
        }

        .rel-card:hover {
            transform: translateY(-5px);
            border-color: rgba(227, 30, 36, 0.4);
        }

        .rel-card h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .rel-card p {
            font-size: 0.78rem;
            color: #9CA3AF;
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .rel-btn {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.4);
            color: #000000;
            font-size: 0.78rem;
            font-weight: 600;
            transition: background 0.2s;
        }

        .rel-btn:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .badge-tag {
            display: inline-block;
            padding: 3px 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, #E31E24, #000000);
            color: #fff;
            font-size: 0.62rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        footer {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 20px;
            text-align: center;
            font-size: 0.78rem;
            color: #6B7280;
            margin-top: 20px;
        }

        footer a {
            color: #000000;
        }

        ::-webkit-scrollbar {
            width: 7px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#E31E24, #000000);
            border-radius: 10px;
        }

        .om-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .om-overlay.open {
            display: flex;
        }

        .om-box {
            background: #1a1030;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 32px;
            width: 100%;
            max-width: 460px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
        }

        .om-box h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #F9FAFB;
        }

        .om-pkg {
            font-size: 0.82rem;
            color: #000000;
            margin-bottom: 20px;
            display: block;
        }

        .om-field {
            margin-bottom: 14px;
        }

        .om-field label {
            display: block;
            font-size: 0.75rem;
            color: #9CA3AF;
            margin-bottom: 5px;
        }

        .om-field input,
        .om-field textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 0.84rem;
            color: #F9FAFB;
            outline: none;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .om-field input:focus,
        .om-field textarea:focus {
            border-color: #000000;
        }

        .om-field textarea {
            resize: vertical;
            min-height: 75px;
        }

        .om-btns {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .om-cancel {
            flex: 1;
            padding: 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #D1D5DB;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
        }

        .om-send {
            flex: 2;
            padding: 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
        }

        .om-note {
            text-align: center;
            font-size: 0.72rem;
            color: #6B7280;
            margin-top: 12px;
        }
    



/* --- CONTACT PAGE STYLES --- */
        .wrap {
            max-width: 1000px;
            margin: 0 auto;
            padding: 130px 24px 60px;
            position: relative;
            z-index: 1;
        }

        .gt {
            background: linear-gradient(135deg, #E31E24, #ff4b4b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sm {
            text-align: center;
            margin-bottom: 56px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(227, 30, 36, 0.15);
            border: 1px solid rgba(227, 30, 36, 0.35);
            color: #ef4444;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .hero-sm h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 10px;
        }

        .hero-sm p {
            color: #9CA3AF;
            font-size: 0.95rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .grid-contact {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 32px;
            align-items: start;
        }

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

        .card-contact {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 20px;
            padding: 32px;
        }

        .card-contact h2 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .card-contact label {
            display: block;
            font-size: 0.78rem;
            font-weight: 600;
            color: #D1D5DB;
            margin-bottom: 6px;
        }

        .card-contact input,
        .card-contact textarea {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #F9FAFB;
            font-family: inherit;
            font-size: 0.88rem;
            margin-bottom: 18px;
            transition: border-color 0.2s;
        }

        .card-contact input:focus,
        .card-contact textarea:focus {
            outline: none;
            border-color: #E31E24;
        }

        .card-contact textarea {
            resize: vertical;
            min-height: 110px;
        }

        .submit-btn {
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            background: linear-gradient(135deg, #E31E24, #000000);
            border: none;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(227, 30, 36, 0.4);
        }

        .form-note {
            font-size: 0.72rem;
            color: #6B7280;
            margin-top: 10px;
            text-align: center;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 22px;
        }

        .info-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(227, 30, 36, 0.15);
            border: 1px solid rgba(227, 30, 36, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            color: #ef4444;
        }

        .info-label {
            font-size: 0.72rem;
            color: #9CA3AF;
            margin-bottom: 2px;
        }

        .info-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: #F9FAFB;
        }

        .info-value a {
            color: #ef4444;
        }

        .info-value a:hover {
            text-decoration: underline;
        }

        .wa-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 13px;
            border-radius: 10px;
            background: rgba(37, 211, 102, 0.12);
            border: 1px solid rgba(37, 211, 102, 0.35);
            color: #34D399;
            font-size: 0.88rem;
            font-weight: 700;
            margin-top: 8px;
            transition: transform 0.2s;
        }

        .wa-btn:hover {
            transform: translateY(-2px);
        }

        .status-msg {
            display: none;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            margin-bottom: 16px;
            text-align: center;
        }

        .status-msg.show {
            display: block;
        }

        .status-success {
            background: rgba(52, 211, 153, 0.12);
            border: 1px solid rgba(52, 211, 153, 0.35);
            color: #34D399;
        }

        .faq-answer {
            display: none;
        }




details > summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; }
