/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #c41e1e;
  --purple-light: #d4af37;
  --purple-glow: #a01818;
  --purple-dark: #7a0e0e;
  --bg: #242222;
  --bg2: #0a0808;
  --bg3: #0a0808;
  --card: #353030;
  --border: rgba(196,30,30,0.3);
  --text: #f5f0eb;
  --text-muted: #b8a8a8;
  --white: #ffffff;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(28,20,20,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  height: 70px;
  width: 90px;
  object-fit: contain;
  mix-blend-mode: screen;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  line-height: 56px;
}
.logo-accent { color: var(--purple-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple-light); }
.nav-cta {
  background: var(--purple); color: var(--white);
  padding: 0.55rem 1.3rem; border-radius: 8px; font-weight: 600;
  font-size: 0.88rem; text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--purple-glow); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,30,30,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,30,30,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-scroll 20s linear infinite;
}
@keyframes grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 50px 50px; }
}
.hero::after {
  content: '';
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,30,30,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(196,30,30,0.15); border: 1px solid var(--border);
  color: var(--purple-light); font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-light); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -1px;
  color: var(--white); position: relative; z-index: 1;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple-light), #f0c040);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.15rem; color: var(--text-muted); max-width: 580px;
  margin: 0 auto 2.5rem; line-height: 1.7; position: relative; z-index: 1;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  color: var(--white); padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 0 30px rgba(196,30,30,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(212,175,55,0.5); }
.btn-secondary {
  background: transparent; color: var(--text);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--purple-light); color: var(--purple-light);
  background: rgba(212,175,55,0.06);
}
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
  margin-top: 4rem; position: relative; z-index: 1;
}
.stat { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 800; color: var(--white);
  background: linear-gradient(135deg, var(--purple-light), #f0c040);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── SECTION commons ── */
section { padding: 6rem 6%; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.divider {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  margin: 1rem 0;
}

/* ── SERVICES ── */
#services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,30,30,0.5);
  box-shadow: 0 20px 60px rgba(212,175,55,0.12);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(196,30,30,0.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--purple-light); background: rgba(212,175,55,0.1);
  padding: 0.25rem 0.75rem; border-radius: 100px;
}

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-card-main {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; position: relative; z-index: 1;
}
.about-card-main .big-letter {
  font-size: 6rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.about-card-main p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 2;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  border-radius: 14px; padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(196,30,30,0.4);
}
.about-badge .num { font-size: 1.8rem; font-weight: 900; color: var(--white); }
.about-badge .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.5;
}
.about-list li::before {
  content: '✦'; color: var(--purple-light); flex-shrink: 0; margin-top: 2px;
}

/* ── PROCESS ── */
#process { background: var(--bg3); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--purple-light);
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(196,30,30,0.35);
}
.step h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.contact-detail-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}
.contact-detail-card .icon {
  font-size: 1.8rem; margin-bottom: 0.25rem;
}
.contact-detail-card strong {
  color: var(--white); font-size: 0.95rem;
}
.contact-detail-card span, .contact-detail-card a {
  color: var(--text-muted); font-size: 0.88rem; text-decoration: none;
}
.contact-detail-card a { color: var(--purple-light); }
.contact-detail-card a:hover { text-decoration: underline; }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); border-radius: 10px;
  padding: 0.75rem 1rem; font-size: 0.93rem; font-family: inherit;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a5568; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 0.95rem; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  color: var(--white); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer;
  box-shadow: 0 0 24px rgba(196,30,30,0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(212,175,55,0.45); }
.btn-submit:active { transform: translateY(0); }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: var(--purple-light); font-size: 1.1rem; font-weight: 600;
}
.form-success .check { font-size: 3rem; margin-bottom: 0.75rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 2.5rem 6%; text-align: center;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.3rem; font-weight: 800; color: var(--white);
}
.footer-logo span { color: var(--purple-light); }
.footer-logo-img {
  height: 48px; width: 48px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--purple-light); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-badge { position: relative; bottom: auto; right: auto; display: inline-block; margin-top: 1rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 4%; }
  .nav-links { display: none; }
  .hero-stats { gap: 1.5rem; }
  section { padding: 4rem 4%; }
  .logo-text{ font-size: 1rem;
    /* font-weight: 500; */
    letter-spacing: -0.5px;
    color: var(--white);
    line-height: 41px;}
  .logo-img {
    height: 60px;
    width: 65px;
    margin-right: -20px;
}

*,
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
