/* ============================================
   NO CODE NINJAS — style.css
   Premium Orange & Black Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:            #080604;
  --bg-2:          #0D0A06;
  --orange:        #E8832A;
  --orange-bright: #FF9A00;
  --orange-deep:   #C4611A;
  --orange-dim:    rgba(232, 131, 42, 0.15);
  --white:         #FFFFFF;
  --dim:           #7A8A9A;
  --glass:         rgba(255, 255, 255, 0.025);
  --glass-border:  rgba(232, 131, 42, 0.18);
  --glow:          0 0 24px rgba(232, 131, 42, 0.45);
  --glow-soft:     0 0 12px rgba(232, 131, 42, 0.25);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Orbitron', sans-serif; line-height: 1.3; color: var(--white); }
a { color: var(--orange); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--orange-bright); }
img { max-width: 100%; display: block; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%; z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(8, 6, 4, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.navbar.scrolled { padding: 0.8rem 4rem; background: rgba(8, 6, 4, 0.97); }

.navbar-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.navbar-logo-img { height: 44px; width: 44px; object-fit: contain; border-radius: 6px; }
.navbar-logo-text { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--orange); text-shadow: var(--glow-soft); letter-spacing: 2px; }

.nav-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-menu a { color: var(--dim); font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s ease; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--orange); transition: width 0.3s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--orange); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   SCROLL ANIMATION
   ============================================ */
.scroll-section { position: relative; min-height: 300vh; }
.scroll-canvas-container { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; }
.scroll-canvas { width: 100%; height: 100%; }

.scroll-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  text-align: center;
  padding: 0 2rem 5rem;
  pointer-events: none;
}
.scroll-overlay.pointer-active { pointer-events: all; }

/* ============================================
   HERO TEXT
   ============================================ */
.hero-tagline-main {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  margin-bottom: 1.8rem;
}

.hero-tagline-main em { font-style: normal; color: var(--orange); }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--orange);
  text-shadow: var(--glow), 0 2px 20px rgba(0,0,0,0.9);
  margin-bottom: 1rem;
  max-width: 700px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  pointer-events: all;
}
.btn-primary { background: var(--orange); color: var(--bg); box-shadow: var(--glow-soft); }
.btn-primary:hover { background: var(--orange-bright); color: var(--bg); box-shadow: var(--glow); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--orange); border: 1px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--bg); box-shadow: var(--glow); transform: translateY(-2px); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 4rem; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 0.8rem; display: block; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.section-subtitle { color: var(--dim); font-size: 0.95rem; max-width: 550px; margin: 0 auto; line-height: 1.8; }

/* ============================================
   FEATURE CARDS
   ============================================ */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }

.feature-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--orange); box-shadow: var(--glow); transform: translateY(-6px); }
.feature-icon { font-size: 2rem; margin-bottom: 1.2rem; color: var(--orange); display: block; }
.feature-card h3 { font-size: 0.88rem; color: var(--orange); margin-bottom: 0.8rem; letter-spacing: 0.5px; }
.feature-card p { color: var(--dim); font-size: 0.82rem; line-height: 1.7; }

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.service-card { background: var(--glass); border: 1px solid var(--glass-border); border-top: 3px solid var(--orange); border-radius: 12px; padding: 2.5rem 2rem; transition: all 0.3s ease; }
.service-card:hover { border-top-color: var(--orange-bright); box-shadow: var(--glow); transform: translateY(-4px); }
.service-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 0.8rem; }
.service-card p { color: var(--dim); font-size: 0.88rem; line-height: 1.7; }
.services-cta { text-align: center; margin-top: 4rem; }
.services-cta h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.services-cta p { color: var(--dim); margin-bottom: 2rem; }

/* ============================================
   TESTIMONIAL SLIDER
   ============================================ */
.testimonial-slider-wrapper { max-width: 850px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }

.testimonial-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2.5rem 2.5rem 2rem; text-align: center; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: rgba(232, 131, 42, 0.35); box-shadow: var(--glow-soft); }

.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 1.2rem; letter-spacing: 3px; }

.testimonial-card blockquote {
  color: var(--dim);
  font-size: 0.95rem;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--orange);
  padding-left: 1.2rem;
  text-align: left;
}

/* Read More button inside testimonials */
.read-more-btn {
  display: inline-block;
  margin-top: 0.6rem;
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.read-more-btn:hover { color: var(--orange-bright); }

.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; font-family: 'Orbitron', sans-serif; margin-bottom: 0.2rem; }
.testimonial-author span { color: var(--orange); font-size: 0.8rem; }

.slider-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.slider-btn { width: 42px; height: 42px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50%; color: var(--orange); font-size: 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--orange); color: var(--bg); box-shadow: var(--glow-soft); }
.slider-dots { display: flex; gap: 0.5rem; }
.dot { width: 8px; height: 8px; background: var(--glass-border); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.dot.active { background: var(--orange); box-shadow: var(--glow-soft); width: 24px; border-radius: 4px; }

/* ============================================
   SOCIAL ICONS — Text only
   ============================================ */
.social-icons { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-icon { display: flex; align-items: center; justify-content: center; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 10px; padding: 0.6rem 1.2rem; text-decoration: none; transition: all 0.35s ease; cursor: pointer; }
.social-icon:hover { border-color: var(--orange); box-shadow: var(--glow); transform: translateY(-2px); background: rgba(232, 131, 42, 0.08); }
.social-icon-name { font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; color: var(--dim); text-transform: uppercase; transition: color 0.3s ease; font-family: 'Inter', sans-serif; }
.social-icon:hover .social-icon-name { color: var(--orange); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-bio { max-width: 750px; margin: 0 auto; text-align: center; }
.about-bio p { color: var(--dim); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
.skills-list { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0; }
.skills-list li { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 0.5rem 1.4rem; font-size: 0.82rem; color: var(--orange); letter-spacing: 0.5px; transition: all 0.3s ease; }
.skills-list li:hover { background: var(--orange-dim); box-shadow: var(--glow-soft); }
.tools-section { margin-top: 4rem; text-align: center; }
.tools-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2rem; }
.tool-badge { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px; padding: 0.55rem 1.2rem; font-size: 0.82rem; color: var(--orange); font-weight: 500; transition: all 0.3s ease; }
.tool-badge:hover { border-color: var(--orange); box-shadow: var(--glow-soft); }
.approach-block { max-width: 750px; margin: 3rem auto 0; background: var(--glass); border: 1px solid var(--glass-border); border-left: 3px solid var(--orange); border-radius: 12px; padding: 2.5rem; }
.approach-block h3 { font-size: 1rem; color: var(--orange); margin-bottom: 0.6rem; }
.approach-block p { color: var(--dim); font-size: 0.95rem; line-height: 1.9; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.portfolio-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.portfolio-card:hover { border-color: var(--orange); box-shadow: var(--glow); transform: translateY(-6px); }
.portfolio-card-image { width: 100%; height: 180px; background: linear-gradient(135deg, rgba(232,131,42,0.1), rgba(196,97,26,0.05)); display: flex; align-items: center; justify-content: center; font-size: 3rem; border-bottom: 1px solid var(--glass-border); }
.portfolio-card-body { padding: 1.5rem; }
.portfolio-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag { background: rgba(232,131,42,0.08); border: 1px solid rgba(232,131,42,0.2); border-radius: 50px; padding: 0.2rem 0.8rem; font-size: 0.7rem; color: var(--orange); letter-spacing: 0.5px; }
.portfolio-card h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.6rem; }
.portfolio-card p { color: var(--dim); font-size: 0.82rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.contact-info h3 { font-size: 1.2rem; color: var(--orange); margin-bottom: 1rem; }
.contact-info p { color: var(--dim); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; color: var(--dim); font-size: 0.9rem; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-form-wrapper { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 8px; padding: 0.9rem 1.2rem; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 10px rgba(232,131,42,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(122,138,154,0.6); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg); border-top: 1px solid var(--glass-border); box-shadow: 0 -1px 20px rgba(232, 131, 42, 0.06); padding: 3rem 4rem 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; color: var(--orange); text-shadow: var(--glow-soft); letter-spacing: 2px; margin-bottom: 0.6rem; }
.footer-brand .footer-tagline { color: var(--dim); font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-connect h4 { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; font-family: 'Orbitron', sans-serif; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--dim); font-size: 0.78rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { display: flex; justify-content: center; gap: 5rem; text-align: center; flex-wrap: wrap; padding: 3rem 4rem; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stat-number { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; color: var(--orange); text-shadow: var(--glow-soft); }
.stat-label { color: var(--dim); font-size: 0.78rem; letter-spacing: 1px; margin-top: 0.3rem; }

/* ============================================
   FADE IN
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(8, 6, 4, 0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .section { padding: 4rem 1.5rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-bar { gap: 2.5rem; padding: 2.5rem 1.5rem; }
  .hero-tagline-main { font-size: 0.78rem; white-space: normal; }
  .social-icons { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .navbar-logo-text { font-size: 0.9rem; }
  .btn { padding: 0.75rem 1.8rem; font-size: 0.78rem; }
  .hero-tagline-main { font-size: 0.7rem; }
}
