:root {
  --bg-dark: #080808;
  --bg-card: #0d0d0d;
  --accent-neon: #CCFF00;
  --text-white: #FFFFFF;
  --text-muted: #888888;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-display: 'Chakra Petch', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --grad-neon-glow: linear-gradient(135deg, #CCFF00 0%, #70A000 100%);
  --grad-card-hover: linear-gradient(180deg, rgba(204, 255, 0, 0.08) 0%, rgba(13, 13, 13, 1) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-mono);
  overflow-x: hidden;
  line-height: 1.5;
  width: 100%;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-neon);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-neon);
  color: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 25px rgba(204, 255, 0, 0.5);
  background: var(--grad-neon-glow);
}

/* Typography & Headers */
.highlight {
  color: var(--accent-neon);
  background: linear-gradient(90deg, #CCFF00 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Interactive Buttons */
.btn-primary {
  background: var(--accent-neon);
  color: #000;
  border: 1px solid var(--accent-neon);
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-neon-glow);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
  color: #000;
}

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

.btn-pill {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-white);
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-pill:hover {
  border-color: var(--accent-neon);
  background: rgba(204, 255, 0, 0.05);
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.15);
  color: var(--accent-neon);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(204, 255, 0, 0.5);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 20px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  border-bottom: 1px solid var(--border-color);
}
.hero-content {
  padding: 60px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-color);
}
.status-badge {
  color: var(--accent-neon);
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 35px;
  max-width: 520px;
}
.social-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-image-container {
  position: relative;
  background: #000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 350px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
  transition: transform 0.5s ease;
}
.hero-image-container:hover .hero-img {
  transform: scale(1.03);
  filter: grayscale(90%) contrast(115%);
}
.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
}
.hero-img-caption h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.hero-img-caption p {
  color: var(--accent-neon);
  font-size: 11px;
  letter-spacing: 1px;
}

/* Continuous Ticker */
.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background: #000;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 25s linear infinite;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Blocks */
.section-block {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border-color);
}

/* Grids & Interactive Cards */
.grid-container {
  display: grid;
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
}
.grid-3col { grid-template-columns: repeat(3, 1fr); }
.grid-4col { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-dark);
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--grad-card-hover);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 255, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(204, 255, 0, 0.08);
}

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

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-icon {
  font-size: 20px;
  color: var(--text-white);
  transition: color 0.3s ease, transform 0.3s ease;
}
.card:hover .card-icon {
  color: var(--accent-neon);
  transform: scale(1.1);
}
.card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #222;
  font-weight: 700;
  transition: color 0.3s ease;
}
.card:hover .card-num {
  color: rgba(204, 255, 0, 0.25);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Stacked Rows */
.stacked-rows {
  border: 1px solid var(--border-color);
}
.row-item {
  display: flex;
  padding: 35px;
  border-bottom: 1px solid var(--border-color);
  gap: 30px;
  transition: background 0.3s ease;
}
.row-item:hover {
  background: rgba(204, 255, 0, 0.02);
}
.row-item:last-child {
  border-bottom: none;
}
.row-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #222;
  font-weight: 700;
  transition: color 0.3s ease;
}
.row-item:hover .row-num {
  color: var(--accent-neon);
}
.row-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.row-content p {
  color: var(--text-muted);
  font-size: 13px;
  max-width: 850px;
  line-height: 1.6;
}

/* Case Studies Table */
.table-container {
  border: 1px solid var(--border-color);
}
.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1.8fr 1fr;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease;
}
.table-row:hover {
  background: rgba(255, 255, 255, 0.015);
}
.table-row:last-child {
  border-bottom: none;
}
.table-col {
  padding: 30px;
  border-right: 1px solid var(--border-color);
}
.table-col:last-child {
  border-right: none;
}
.col-meta {
  font-size: 11px;
  color: var(--accent-neon);
  margin-top: 8px;
  font-weight: 700;
}
.col-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-top: 5px;
}
.badge-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}
.label-green {
  color: var(--accent-neon);
}
.table-col p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent-neon);
  font-weight: 700;
  display: block;
}
.metric-sub {
  font-size: 11px;
  color: var(--text-muted);
}

/* Metrics & Reviews */
.metric-bar {
  margin-bottom: 40px;
}
.metric-card {
  background: var(--bg-dark);
  padding: 30px;
  transition: background 0.3s ease;
}
.metric-card:hover {
  background: var(--bg-card);
}
.metric-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-neon);
  font-weight: 700;
  display: block;
}
.metric-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.review-text {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.6;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.review-user h4 {
  font-family: var(--font-display);
  font-size: 13px;
}
.review-user span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Contact Section */
.audit-box {
  border: 1px solid var(--border-color);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
  background: var(--bg-card);
}
.audit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 15px;
}
.audit-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.audit-bullets {
  list-style: none;
  margin-bottom: 25px;
}
.audit-bullets li {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.audit-bullets i {
  color: var(--accent-neon);
}
.audit-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.huge-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 0.95;
  margin-bottom: 25px;
  word-break: break-word;
}
.contact-email {
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.contact-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-neon);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.dark-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  background: #0d0d0d;
  border: 1px solid var(--border-color);
  padding: 14px;
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-neon);
  box-shadow: 0 0 15px rgba(204, 255, 0, 0.15);
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}
.form-status-msg {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   Comprehensive Media Query Breakpoints (Tablets & Mobile Viewports)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-content {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 50px 5%;
  }
  .hero-image-container {
    min-height: 380px;
  }
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .table-row {
    grid-template-columns: 1fr 1fr;
  }
  .table-col {
    border-bottom: 1px solid var(--border-color);
  }
  .contact-split,
  .audit-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  .desktop-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    padding: 25px 5%;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  .nav-links.active {
    transform: translateY(0);
  }
  .section-block {
    padding: 50px 5%;
  }
  .grid-3col,
  .grid-4col {
    grid-template-columns: 1fr;
  }
  .row-item {
    flex-direction: column;
    gap: 15px;
    padding: 25px;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .table-col {
    border-right: none;
    padding: 20px;
  }
  .audit-box {
    padding: 25px;
  }
  .audit-btns {
    flex-direction: column;
    width: 100%;
  }
  .audit-btns a {
    width: 100%;
  }
  .social-pills {
    flex-direction: column;
    width: 100%;
  }
  .social-pills .btn-pill {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-block {
    padding: 40px 4%;
  }
  .card {
    padding: 20px;
  }
  .metric-card {
    padding: 18px;
  }
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}