/* === REDDY2DEMO — Commercial Demolition === */
/* Black, Neon Green, Aggressive Industrial */

/* === RESET & FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --black: #0a0a0a;
  --black-alt: #111111;
  --neon: #39ff14;
  --neon-dark: #2bd40d;
  --white: #ffffff;
  --grey: #999999;
  --grey-light: #cccccc;
  --grey-dark: #333333;
  --border: #1a1a1a;
  --radius: 4px;
  --container: 1280px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--neon-dark);
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  color: var(--neon);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--white);
}

.section-desc {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.neon-text {
  color: var(--neon);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
  font-weight: 700;
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon);
  border-color: var(--neon);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-neon-outline {
  background: transparent;
  color: var(--neon);
  border-color: var(--neon);
}

.btn-neon-outline:hover {
  background: var(--neon);
  color: var(--black);
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1.4rem;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--neon);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--grey-light);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon);
}

.nav-cta {
  background: var(--neon);
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  border: 2px solid var(--neon);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--neon) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--neon);
}

.mobile-nav .nav-cta {
  font-size: 1.6rem !important;
  padding: 0.8rem 2.4rem !important;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20% 0 -20% 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 8rem 1.5rem 4rem;
}

.hero-tagline {
  display: inline-block;
  color: var(--neon);
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--neon);
  background: rgba(57, 255, 20, 0.06);
}

.hero h1 {
  margin-bottom: 1.2rem;
  line-height: 0.95;
}

.hero h1 .highlight {
  color: var(--neon);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; height: 20px; }
  50% { opacity: 1; height: 40px; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--black-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-item {
  padding: 2.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--neon);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--black-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--neon);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(57, 255, 20, 0.08);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6), transparent);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.service-card-body p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card-link {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.service-card-link:hover {
  gap: 0.7rem;
}

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--black-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--neon);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.15);
}

.why-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--neon);
  fill: none;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === PROJECTS === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    transparent 100%
  );
  transition: background var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 60%,
    rgba(10, 10, 10, 0.2) 100%
  );
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.project-info span {
  color: var(--neon);
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: var(--black-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  color: var(--neon);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  color: var(--neon);
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.15rem;
}

.testimonial-author-info span {
  color: var(--neon);
  font-size: 0.8rem;
}

/* === QUOTE FORM === */
.quote-section {
  background: var(--black-alt);
  border-top: 1px solid rgba(57, 255, 20, 0.15);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.quote-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.quote-content p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quote-reasons {
  list-style: none;
}

.quote-reasons li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--grey-light);
  font-size: 0.95rem;
}

.quote-reasons li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.form {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--grey-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--black-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--neon);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
  opacity: 0.3;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content h3 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.08), rgba(57, 255, 20, 0.02));
  border-top: 1px solid rgba(57, 255, 20, 0.2);
  border-bottom: 1px solid rgba(57, 255, 20, 0.2);
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  min-width: 260px;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--grey);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--neon);
}

.footer-phone {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: var(--neon) !important;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-email {
  color: var(--grey);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--black-alt);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.social-links a:hover {
  border-color: var(--neon);
  background: rgba(57, 255, 20, 0.06);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--grey);
  transition: fill var(--transition);
}

.social-links a:hover svg {
  fill: var(--neon);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--grey);
  font-size: 0.8rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.8rem;
}

.footer-credit a {
  color: var(--grey);
}

.footer-credit a:hover {
  color: var(--neon);
}

/* === SERVICE DETAIL PAGE === */
.service-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-alt);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 1.5rem 4rem;
}

.service-hero-content h1 {
  margin-bottom: 1rem;
}

.service-hero-content p {
  color: var(--grey-light);
  font-size: 1.15rem;
  max-width: 600px;
}

.service-content {
  padding: 6rem 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-content-grid.reverse {
  direction: rtl;
}

.service-content-grid.reverse > * {
  direction: ltr;
}

.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.service-image img {
  width: 100%;
  height: auto;
}

.service-detail h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-detail p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-includes {
  list-style: none;
  margin-bottom: 2rem;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--grey-light);
  font-size: 0.95rem;
}

.service-includes li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* === CONTACT PAGE === */
.contact-hero {
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  background: var(--black-alt);
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  margin-bottom: 1rem;
}

.contact-hero p {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--transition);
}

.contact-info-card:hover {
  border-color: var(--neon);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.15);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon);
  fill: none;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info-card a,
.contact-info-card span {
  color: var(--grey-light);
  font-size: 0.95rem;
}

.contact-info-card a:hover {
  color: var(--neon);
}

.contact-form-section {
  padding: 4rem 0 6rem;
}

/* === PROJECTS PAGE === */
.projects-hero {
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  background: var(--black-alt);
  border-bottom: 1px solid var(--border);
}

.projects-hero h1 {
  margin-bottom: 1rem;
}

.projects-hero p {
  color: var(--grey);
  font-size: 1.1rem;
}

.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
  padding: 4rem 0 6rem;
}

.project-card-large {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
  cursor: pointer;
}

.project-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.project-card-large:hover img {
  transform: scale(1.06);
}

.project-card-large .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.1));
}

.project-card-large .project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.project-card-large .project-info h3 {
  font-size: 2rem;
}

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3)::after {
    display: none;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    grid-column: span 1;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .projects-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(5) {
    grid-column: span 2;
  }

  .stat-item:nth-child(4)::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section {
    padding: 4rem 0;
  }

  .project-card {
    aspect-ratio: 16/11;
  }

  .form {
    padding: 1.5rem;
  }
}

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

  .stat-item::after {
    display: none !important;
  }

  .stat-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
  }

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

/* === ANIMATIONS === */

/* Base fade-in (legacy class, kept for compat) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero background parallax — needs overflow:hidden on parent */
.hero {
  overflow: hidden;
}

.hero-bg {
  will-change: transform;
}

/* Why card neon border sweep */
.why-card {
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s ease;
}

.why-card--lit {
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.08), inset 0 0 24px rgba(57, 255, 20, 0.03);
}

/* Neon glow pulse on stat numbers after count-up */
.stat-number {
  will-change: opacity;
}

/* Smooth image transitions */
.service-card-img img,
.project-card img,
.project-card-large img {
  will-change: transform;
}

/* CTA banner — neon glow shimmer */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.04), transparent);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 120%; }
}

/* Neon text letter reveal — handled by JS, just ensure display */
.neon-text span,
.highlight span {
  display: inline;
}

/* Section reveals — base state set by JS, transition defined here for performance */
._animated {
  will-change: opacity, transform;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }