/* =============================================================================
   EIGHTIES.LUCITECH.NET — Professional Websites, Maximum Aesthetic Intensity
   Lucitech Content + First Friday Foundation Ugly Theme = PERFECTION!!!
   ============================================================================= */

/* ANIMATIONS — THE GOOD STUFF */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes rainbow-text {
  0%   { color: #ff0000; }
  14%  { color: #ff7700; }
  28%  { color: #ffff00; }
  42%  { color: #00ff00; }
  57%  { color: #0088ff; }
  71%  { color: #8800ff; }
  85%  { color: #ff00ff; }
  100% { color: #ff0000; }
}

@keyframes shake {
  0%, 100% { transform: skewX(0deg) rotate(0deg); }
  20%  { transform: skewX(-5deg) rotate(-2deg); }
  40%  { transform: skewX(3deg)  rotate(1.5deg); }
  60%  { transform: skewX(-4deg) rotate(-1deg); }
  80%  { transform: skewX(2deg)  rotate(2.5deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes marquee-scroll {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

@keyframes bg-flash {
  0%   { background-color: #ff0000; }
  25%  { background-color: #00aa00; }
  50%  { background-color: #0000ff; }
  75%  { background-color: #ff6600; }
  100% { background-color: #ff0000; }
}

@keyframes text-glow {
  0%, 100% { text-shadow: 4px 4px 0 #ff0000, 8px 8px 0 #0000ff, -4px -4px 0 #ff00ff; }
  33%  { text-shadow: 4px 4px 0 #00ff00, 8px 8px 0 #ff00ff, -4px -4px 0 #0000ff; }
  66%  { text-shadow: 4px 4px 0 #0000ff, 8px 8px 0 #00ff00, -4px -4px 0 #ff0000; }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

@keyframes pulse-rainbow {
  0%   { box-shadow: 0 0 20px #ff0000; }
  25%  { box-shadow: 0 0 20px #00ff00; }
  50%  { box-shadow: 0 0 20px #0000ff; }
  75%  { box-shadow: 0 0 20px #ff00ff; }
  100% { box-shadow: 0 0 20px #ff0000; }
}

/* GLOBAL RESET (but make it horrible) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand ITC', cursive !important;
}

/* BODY — Rainbow diagonal stripe hell */
body {
  background-color: #ff00ff;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255, 0,   0,   0.4) 0px,
      rgba(255, 0,   0,   0.4) 8px,
      rgba(255, 165, 0,   0.4) 8px,
      rgba(255, 165, 0,   0.4) 16px,
      rgba(255, 255, 0,   0.4) 16px,
      rgba(255, 255, 0,   0.4) 24px,
      rgba(0,   200, 0,   0.4) 24px,
      rgba(0,   200, 0,   0.4) 32px,
      rgba(0,   0,   255, 0.4) 32px,
      rgba(0,   0,   255, 0.4) 40px,
      rgba(148, 0,   211, 0.4) 40px,
      rgba(148, 0,   211, 0.4) 48px
    );
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 42px;
  overflow-x: hidden;
}

/* SKIP NAV — accessible but ugly */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: #ff0000;
  color: #ffff00;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 900;
  z-index: 9999;
  text-decoration: none;
  border: 3px dashed #ffff00;
}
.skip-nav:focus { top: 0; }

/* UNDER CONSTRUCTION BANNER */
.construction-banner {
  background: repeating-linear-gradient(
    -45deg,
    #ffff00,
    #ffff00 10px,
    #000000 10px,
    #000000 20px
  );
  color: #ff0000;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  padding: 6px 10px;
  animation: blink 1s step-start infinite;
  border-bottom: 4px solid #ff0000;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ANNOUNCEMENT TICKER */
.announcement-bar {
  background: #ff0000;
  color: #ffff00;
  padding: 9px 0;
  font-size: 17px;
  font-weight: 900;
  overflow: hidden;
  white-space: nowrap;
  border-top:    5px dashed #00ff00;
  border-bottom: 5px dashed #00ff00;
}
.announcement-inner {
  display: inline-block;
  animation: marquee-scroll 22s linear infinite;
  padding-left: 100%;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #ff6600 0%, #cc00cc 40%, #6600cc 100%);
  padding: 20px;
  border-top:    5px ridge #ffff00;
  border-bottom: 5px ridge #ffff00;
  box-shadow:
    0 4px 0 #ff0000,
    0 8px 0 #ff8800,
    0 12px 0 #ffff00,
    inset 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 15px;
}

.site-logo {
  max-width: 160px;
  height: auto;
  border: 5px solid #ffff00;
  filter: drop-shadow(0 0 12px #00ff00) drop-shadow(0 0 24px #ff00ff);
  transform: rotate(-4deg);
  animation: wobble 3s ease-in-out infinite;
}

.header-text {
  text-align: center;
}

.site-title {
  font-size: clamp(24px, 5.5vw, 58px);
  color: #ffff00;
  animation: text-glow 3s ease-in-out infinite, shake 4s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

.site-subtitle {
  color: #00ff00;
  font-size: clamp(14px, 2.5vw, 22px);
  text-shadow: 2px 2px 0 #000000;
  text-transform: uppercase;
  letter-spacing: 6px;
  animation: blink 2.5s step-start infinite;
  margin-top: 6px;
}

.site-tagline {
  color: #00ffff;
  font-size: clamp(12px, 2vw, 17px);
  font-weight: 700;
  text-shadow: 1px 1px 0 #000000;
  text-transform: uppercase;
  margin-top: 4px;
}

/* NAVIGATION */
nav {
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00cc00, #0000ff, #8800cc, #ff00ff, #ff0000);
  border-top:    4px double #000000;
  border-bottom: 4px double #000000;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav ul li a {
  display: block;
  padding: 12px 22px;
  color: #000000;
  text-decoration: underline;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  border-right: 3px dashed #ff00ff;
  transition: transform 0.1s, background 0.1s;
  white-space: nowrap;
}

nav ul li a:hover {
  background: #000000 !important;
  color: #00ff00;
  text-decoration: underline line-through;
  transform: scale(1.15) rotate(4deg);
}

nav ul li a.active {
  background: rgba(0, 0, 0, 0.5);
  color: #ffff00;
  animation: blink 2s step-start infinite;
}

.menu-toggle {
  display: none;
  background: #ff0000;
  color: #ffff00;
  border: 4px dashed #ffff00;
  font-family: 'Comic Sans MS', cursive !important;
  font-size: 17px;
  font-weight: 900;
  padding: 12px 20px;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bg-flash 2s infinite;
}

/* MAIN CONTENT */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HERO SECTION ===== */
#hero {
  background: #00cc00;
  color: #000000;
  padding: 50px 25px;
  text-align: center;
  border: 8px dashed #ff00ff;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★";
  display: block;
  color: #ff0000;
  font-size: 22px;
  overflow: hidden;
  animation: marquee-scroll 6s linear infinite;
  white-space: nowrap;
  margin-bottom: 20px;
}

#hero h2 {
  font-size: clamp(30px, 8vw, 80px);
  color: #ff00ff;
  text-shadow:
    4px 4px 0 #000000,
    8px 8px 0 #ff0000,
    -4px -4px 0 #0000ff;
  animation: rainbow-text 1.8s linear infinite, shake 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.hero-image-container {
  margin: 25px auto;
  max-width: 820px;
  border: 10px double #ff0000;
  box-shadow:
    15px 15px 0 #ff00ff,
    30px 30px 0 #0000ff;
  transform: rotate(2deg);
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  display: block;
  filter: contrast(140%) saturate(200%);
}

.hero-tagline {
  font-size: 22px;
  color: #000080;
  background: #ffff00;
  display: inline-block;
  padding: 10px 25px;
  border: 4px solid #ff0000;
  font-weight: 900;
  animation: blink 3s step-start infinite;
  transform: rotate(-2deg);
  margin: 15px 0;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.hero-badge {
  background: #ff0000;
  color: #ffff00;
  padding: 12px 22px;
  border: 5px solid #0000ff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000000;
  animation: bg-flash 4s infinite;
}
.hero-badge:nth-child(1) { transform: rotate(-5deg); }
.hero-badge:nth-child(2) { transform: rotate(4deg);  animation-delay: 1.3s; }
.hero-badge:nth-child(3) { transform: rotate(-3deg); animation-delay: 2.6s; }

/* ===== SECTIONS — alternating horror ===== */
section {
  padding: 50px 30px;
}

section h2 {
  font-size: clamp(26px, 5vw, 52px);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  padding: 12px 20px;
  border: 4px double currentColor;
  background: rgba(0, 0, 0, 0.2);
  text-shadow: 3px 3px 0 rgba(255,255,255,0.4), -2px -2px 0 rgba(0,0,0,0.4);
  animation: shake 5s ease-in-out infinite;
  letter-spacing: 4px;
}

section h3 {
  font-size: clamp(18px, 3vw, 26px);
  border-bottom: 3px dashed currentColor;
  padding-bottom: 8px;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-decoration: underline;
}

#stats {
  background: #8800aa;
  color: #ffff00;
  border: 8px ridge #ff0000;
}

#services-section {
  background: #005500;
  color: #ffff00;
  border: 8px ridge #ff0000;
}

#portfolio {
  background: #000088;
  color: #ffff00;
  border: 8px ridge #ff6600;
}

#process {
  background: #880000;
  color: #00ffff;
  border: 8px ridge #00ff00;
}

#pricing-section {
  background: #cc00cc;
  color: #00ff00;
  border: 8px ridge #ffff00;
}

#faq-section {
  background: #004488;
  color: #ffff00;
  border: 8px ridge #ff00ff;
}

#about {
  background: #000088;
  color: #ffff00;
  border: 8px ridge #ff0000;
}

#contact-section {
  background: #cc0000;
  color: #00ffff;
  border: 8px ridge #ff00ff;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #8800cc;
  color: #00ff00;
  padding: 50px 25px;
  text-align: center;
  border: 8px dashed #ffff00;
}

.page-hero h1 {
  font-size: clamp(30px, 7vw, 72px);
  color: #ffff00;
  text-shadow:
    4px 4px 0 #000000,
    8px 8px 0 #ff0000,
    -4px -4px 0 #0000ff;
  animation: rainbow-text 2s linear infinite, shake 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #ff6600;
  text-shadow: 2px 2px 0 #000000;
  animation: blink 4s step-start infinite;
}

/* ===== NOTICE BOX ===== */
.notice {
  background: #ffff00;
  color: #ff0000;
  border: 5px double #0000ff;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  animation: shake 3s ease-in-out infinite;
  text-transform: uppercase;
}

.free-notice {
  font-size: clamp(36px, 7vw, 60px);
  color: #ff0000;
  text-shadow: 3px 3px 0 #0000ff;
  animation: rainbow-text 1s linear infinite, shake 0.8s ease-in-out infinite;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 20px 0;
}

.info-card {
  background: #ff6600;
  color: #000080;
  border: 4px dashed #00ff00;
  padding: 20px;
  text-align: center;
  box-shadow: 8px 8px 0 #ff00ff;
}
.info-card:nth-child(1) { transform: rotate(-2deg); }
.info-card:nth-child(2) { transform: rotate(1.5deg); }
.info-card:nth-child(3) { transform: rotate(-1deg); }
.info-card:nth-child(4) { transform: rotate(2.5deg); }
.info-card:nth-child(5) { transform: rotate(-1.5deg); }
.info-card:nth-child(6) { transform: rotate(2deg); }

.info-card .icon {
  font-size: 48px;
  display: block;
  margin-bottom: 10px;
  animation: spin-slow 6s linear infinite;
}

.info-card h3 {
  font-size: 18px;
  border-bottom: 3px dashed #000080;
  padding-bottom: 8px;
  margin-bottom: 8px;
  color: #ff00ff;
  text-decoration: underline;
}

.info-card p {
  font-size: 13px;
  font-weight: 700;
}

/* ===== STATS BAR ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 10px 0;
}

.stat-item {
  background: #ff0000;
  color: #ffff00;
  padding: 20px 15px;
  text-align: center;
  border: 4px dashed #00ff00;
  box-shadow: 6px 6px 0 #000000;
}
.stat-item:nth-child(1) { transform: rotate(-2deg); background: #ff0000; }
.stat-item:nth-child(2) { transform: rotate(1.5deg); background: #0000cc; }
.stat-item:nth-child(3) { transform: rotate(-1deg); background: #006600; }
.stat-item:nth-child(4) { transform: rotate(2deg); background: #cc6600; }

.stat-item .stat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
  animation: spin-slow 8s linear infinite;
}

.stat-item .stat-number {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: #ffff00;
  text-shadow: 2px 2px 0 #000000;
  animation: rainbow-text 3s linear infinite;
  display: block;
}

.stat-item .stat-label {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-item .stat-sub {
  font-size: 11px;
  color: #ffff00;
  margin-top: 4px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.service-card {
  background: #ff6600;
  color: #000080;
  border: 5px dashed #ffff00;
  padding: 24px;
  text-align: center;
  box-shadow: 10px 10px 0 #ff00ff, 20px 20px 0 #000000;
}
.service-card:nth-child(odd)  { transform: rotate(-2deg); background: #ff6600; }
.service-card:nth-child(even) { transform: rotate(2deg);  background: #0000cc; color: #ffff00; }

.service-card .service-icon {
  font-size: 52px;
  display: block;
  margin: 0 auto 16px;
  animation: spin-slow 10s linear infinite;
}

.service-card h3 {
  font-size: 22px;
  color: #ff00ff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #000000;
}
.service-card:nth-child(even) h3 { color: #ffff00; }

.service-card p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.service-card ul li {
  padding: 6px 0;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px dashed currentColor;
}

.service-card ul li::before {
  content: "★ ";
  color: #ff0000;
  font-size: 16px;
}

/* ===== PORTFOLIO / RECENT WORK ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}

.portfolio-item {
  background: #ffff00;
  color: #ff0000;
  border: 6px solid #0000ff;
  padding: 0;
  box-shadow: 10px 10px 0 #ff00ff, 20px 20px 0 #00cc00;
  overflow: hidden;
}
.portfolio-item:nth-child(1) { transform: rotate(-1deg); }
.portfolio-item:nth-child(2) { transform: rotate(1deg); }
.portfolio-item:nth-child(3) { transform: rotate(-0.5deg); }
.portfolio-item:nth-child(4) { transform: rotate(1.5deg); }

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  filter: saturate(200%) contrast(120%);
  border-bottom: 5px dashed #ff0000;
  transition: filter 0.3s;
}

.portfolio-item:hover img {
  filter: saturate(400%) hue-rotate(90deg) contrast(130%);
}

.portfolio-item-info {
  padding: 16px;
}

.portfolio-item-title {
  font-size: 18px;
  font-weight: 900;
  color: #0000ff;
  margin-bottom: 6px;
  text-decoration: underline;
}

.portfolio-item-type {
  font-size: 13px;
  font-weight: 900;
  color: #ff00ff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.portfolio-item-desc {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

.portfolio-item-your-site {
  background: #ff00ff;
  color: #ffff00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  text-align: center;
  border: 6px dashed #ffff00;
  animation: bg-flash 5s infinite;
}

.portfolio-item-your-site .your-site-icon {
  font-size: 60px;
  display: block;
  margin-bottom: 16px;
  animation: spin-slow 4s linear infinite;
}

.portfolio-item-your-site h3 {
  font-size: 24px;
  color: #ffff00;
  text-shadow: 3px 3px 0 #000000;
  margin-bottom: 10px;
  border: none !important;
  padding-bottom: 0 !important;
  text-decoration: none !important;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.process-step {
  background: #ff8800;
  color: #000080;
  border: 4px dashed #ff00ff;
  padding: 24px;
  text-align: center;
  box-shadow: 8px 8px 0 #000000;
}
.process-step:nth-child(1) { transform: rotate(-2deg); background: #ff8800; }
.process-step:nth-child(2) { transform: rotate(1.5deg); background: #00aa00; color: #ffff00; }
.process-step:nth-child(3) { transform: rotate(-1deg); background: #0000cc; color: #ffff00; }
.process-step:nth-child(4) { transform: rotate(2.5deg); background: #cc0000; color: #ffff00; }

.step-number {
  font-size: 60px;
  font-weight: 900;
  color: #ff00ff;
  text-shadow: 4px 4px 0 #000000;
  animation: rainbow-text 4s linear infinite;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.process-step p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-card {
  background: #0000aa;
  color: #ffff00;
  padding: 40px 30px;
  border: 10px outset #ff00ff;
  max-width: 700px;
  margin: 25px auto;
  transform: perspective(600px) rotateY(3deg);
  box-shadow: 20px 20px 0 #ff0000, 40px 40px 0 #00cc00;
  text-align: center;
}

.pricing-amount-display {
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  color: #ffff00;
  text-shadow: 6px 6px 0 #ff0000, 12px 12px 0 #ff00ff;
  animation: text-glow 2s ease-in-out infinite;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-period {
  font-size: 28px;
  color: #00ff00;
  font-weight: 900;
  text-transform: uppercase;
  animation: blink 3s step-start infinite;
  margin-bottom: 20px;
}

.pricing-setup {
  font-size: 22px;
  color: #ff6600;
  font-weight: 900;
  background: #000000;
  padding: 10px 20px;
  border: 3px dashed #ffff00;
  display: inline-block;
  margin-bottom: 30px;
  animation: shake 4s ease-in-out infinite;
}

.pricing-features-list {
  list-style: none;
  text-align: left;
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border: 4px dashed #ff0000;
  margin-bottom: 30px;
}

.pricing-features-list li {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px dashed #00ff00;
  color: #ffff00;
}

.pricing-features-list li::before {
  content: "✦ ";
  color: #ff0000;
  font-size: 18px;
  animation: rainbow-text 2s linear infinite;
}

.no-costs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px;
  background: #004400;
  border: 4px dashed #ff0000;
  margin: 20px 0;
}

.no-costs-list li {
  padding: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffff00;
  border: 2px dashed #00ff00;
}

.no-costs-list li::before {
  content: "✗ NO ";
  color: #ff0000;
  font-weight: 900;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #0000cc;
  color: #ffff00;
  margin-bottom: 16px;
  border: 5px dashed #ff6600;
  box-shadow: 8px 8px 0 #ff0000;
}
.faq-item:nth-child(even) {
  background: #660000;
  border-color: #00ff00;
  transform: rotate(-0.5deg);
}
.faq-item:nth-child(odd) {
  transform: rotate(0.5deg);
}

.faq-item summary {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  color: #ffff00;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px dashed currentColor;
}

.faq-item summary::before {
  content: ">>> ";
  color: #ff0000;
  animation: rainbow-text 2s linear infinite;
}

.faq-item[open] summary {
  animation: blink 3s step-start infinite;
}

.faq-answer {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  border-top: 3px dashed #ff00ff;
  background: rgba(0,0,0,0.3);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
}

.about-photo {
  width: 100%;
  border: 8px dashed #ff00ff;
  box-shadow: 15px 15px 0 #ff0000, 30px 30px 0 #0000ff;
  transform: rotate(-3deg);
  filter: saturate(200%) contrast(120%);
  transition: filter 0.3s, transform 0.3s;
}

.about-photo:hover {
  filter: saturate(400%) hue-rotate(60deg) contrast(140%);
  transform: rotate(3deg) scale(1.02);
}

.about-text {
  background: #000066;
  color: #ffff00;
  padding: 30px;
  border: 6px outset #ff00ff;
  box-shadow: 10px 10px 0 #ff0000;
  transform: rotate(1deg);
}

.about-text blockquote {
  font-size: 16px;
  line-height: 1.8;
  color: #00ffff;
  font-style: italic;
  font-weight: 700;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-left: 6px solid #ff0000;
  margin-bottom: 20px;
  animation: shake 8s ease-in-out infinite;
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-sig img {
  filter: brightness(2) invert(1) hue-rotate(180deg);
  animation: wobble 4s ease-in-out infinite;
}

.about-sig-info {
  font-size: 16px;
  font-weight: 900;
  color: #ff6600;
}

.about-sig-info strong {
  display: block;
  font-size: 20px;
  color: #ffff00;
  text-shadow: 2px 2px 0 #000000;
}

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.team-card {
  background: #ff0000;
  color: #ffff00;
  border: 5px dashed #00ff00;
  overflow: hidden;
  text-decoration: none;
  display: block;
  box-shadow: 10px 10px 0 #ff00ff, 20px 20px 0 #0000ff;
  transition: transform 0.2s;
}
.team-card:nth-child(1) { transform: rotate(-2deg); background: #ff0000; }
.team-card:nth-child(2) { transform: rotate(1.5deg); background: #0000cc; }
.team-card:nth-child(3) { transform: rotate(-1deg); background: #006600; }
.team-card:nth-child(4) { transform: rotate(2deg); background: #cc6600; }

.team-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  animation: pulse-rainbow 1s infinite;
}

.team-card-photo {
  overflow: hidden;
  border-bottom: 5px dashed #ffff00;
}

.team-card-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%) contrast(120%);
  transition: filter 0.4s;
  display: block;
}

.team-card:hover .team-card-photo img {
  filter: saturate(300%) hue-rotate(180deg) contrast(140%);
}

.team-card-info {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-card-info h3 {
  font-size: 18px;
  color: #ffff00;
  margin-bottom: 4px;
  text-shadow: 2px 2px 0 #000000;
  border: none !important;
  padding-bottom: 0 !important;
  text-decoration: none !important;
}

.team-card-info p {
  font-size: 13px;
  font-weight: 700;
  color: #ff6600;
}

.team-card-arrow {
  font-size: 24px;
  color: #ff0000;
  animation: blink 2s step-start infinite;
}

/* ===== TEAM BIO PAGE ===== */
.bio-section {
  background: #000088;
  color: #ffff00;
  padding: 50px 25px;
  border: 8px ridge #ff0000;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.bio-photo {
  width: 100%;
  border: 8px dashed #ff00ff;
  box-shadow: 12px 12px 0 #ff0000, 24px 24px 0 #00cc00;
  transform: rotate(-3deg);
  filter: grayscale(100%) contrast(120%);
}

.bio-photo:hover {
  filter: saturate(200%) hue-rotate(60deg);
  transform: rotate(3deg);
}

.bio-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: #ffff00;
  animation: text-glow 3s ease-in-out infinite;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bio-title {
  font-size: 22px;
  color: #ff6600;
  font-weight: 900;
  text-transform: uppercase;
  animation: blink 3s step-start infinite;
  margin-bottom: 20px;
}

.bio-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #00ffff;
  background: rgba(0,0,0,0.3);
  padding: 20px;
  border: 4px dashed #ff6600;
  margin-bottom: 24px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #0000aa;
  color: #ffff00;
  padding: 30px;
  border: 10px outset #ff00ff;
  max-width: 700px;
  margin: 25px auto;
  transform: perspective(600px) rotateY(4deg);
  box-shadow: 20px 20px 0 #ff0000, 40px 40px 0 #00cc00;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #ff6600;
  text-shadow: 1px 1px 0 #ffff00;
  animation: blink 5s step-start infinite;
  letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 4px dashed #ff0000;
  background: #ffff00;
  color: #ff00ff;
  font-family: 'Comic Sans MS', cursive !important;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 5px 5px 0 rgba(0,0,0,0.25);
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #00ff00;
  background: #ff00ff;
  color: #ffff00;
  box-shadow: 0 0 20px #00ff00, inset 0 0 10px rgba(255,255,0,0.4);
  transform: scale(1.02) rotate(0.8deg);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: both;
}

.contact-form button[type="submit"] {
  background: #ff0000;
  color: #ffff00;
  border: 5px ridge #ff00ff;
  padding: 16px 0;
  font-family: 'Comic Sans MS', cursive !important;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  width: 100%;
  letter-spacing: 5px;
  animation: bg-flash 2.5s infinite;
  box-shadow: 5px 5px 0 #000000;
  text-shadow: 2px 2px 0 #ff00ff;
  transition: transform 0.1s;
}

.contact-form button[type="submit"]:hover {
  transform: scale(1.05) rotate(-2deg);
  animation-duration: 0.5s;
}

.contact-form button[type="submit"]:focus {
  outline: 4px dashed #00ff00;
  outline-offset: 3px;
}

/* ===== LOCATION PAGE ===== */
.location-hero {
  background: #006600;
  color: #ffff00;
  padding: 50px 25px;
  text-align: center;
  border: 8px dashed #ff00ff;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.location-card {
  background: #880000;
  color: #00ffff;
  border: 5px dashed #ffff00;
  padding: 24px;
  box-shadow: 8px 8px 0 #ff00ff;
}
.location-card:nth-child(odd) { transform: rotate(-1.5deg); }
.location-card:nth-child(even) { transform: rotate(1.5deg); background: #000088; }

.location-card h3 {
  font-size: 22px;
  color: #ffff00;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #000000;
}

.location-card p,
.location-card li {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.location-card ul {
  list-style: none;
  padding: 0;
}

.location-card ul li::before {
  content: "★ ";
  color: #ff0000;
  animation: rainbow-text 3s linear infinite;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.gallery-item {
  overflow: hidden;
  border: 6px dashed #ff0000;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(300%) contrast(120%);
  transition: filter 0.4s, transform 0.4s;
  display: block;
}

.gallery-item:hover img {
  filter: saturate(10%) hue-rotate(180deg) contrast(200%);
  transform: scale(1.4) rotate(8deg);
}

.gallery-item::after {
  content: "★ AMAZING!!! ★";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  background: rgba(255, 0, 0, 0.85);
  color: #ffff00;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: #ff0000;
  color: #ffff00;
  padding: 14px 32px;
  border: 5px ridge #ff00ff;
  font-family: 'Comic Sans MS', cursive !important;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 6px 6px 0 #000000, 12px 12px 0 #0000ff;
  transition: transform 0.1s, box-shadow 0.1s;
  animation: bg-flash 4s infinite;
  letter-spacing: 3px;
  margin: 10px 5px;
}
.btn:hover {
  transform: translateX(-5px) translateY(-5px);
  box-shadow: 11px 11px 0 #000000, 22px 22px 0 #0000ff;
}
.btn:active {
  transform: translateX(5px) translateY(5px);
  box-shadow: none;
}
.btn:focus {
  outline: 4px dashed #ff0000;
  outline-offset: 2px;
}

.btn-secondary {
  background: #0000cc;
  animation-delay: 1s;
}

/* ===== HR ===== */
hr {
  border: none;
  border-top:    5px dashed #ff00ff;
  border-bottom: 5px dotted #00ff00;
  margin: 22px 0;
}

hr.stars {
  border: none;
  background: #ff0000;
  padding: 6px;
  text-align: center;
  overflow: hidden;
}
hr.stars::before {
  content: "✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦ ✦";
  display: block;
  color: #ffff00;
  font-size: 20px;
  animation: rainbow-text 5s linear infinite;
}

/* ===== FOOTER ===== */
footer {
  background: #000000;
  color: #00ff00;
  padding: 30px 20px;
  border-top: 10px solid #ff0000;
  text-align: center;
}

footer::before {
  content: "★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★";
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  overflow: hidden;
  animation: rainbow-text 6s linear infinite;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  margin: 0 auto 20px;
  filter: brightness(2) hue-rotate(180deg);
  animation: spin-slow 18s linear infinite;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
  list-style: none;
}

.footer-links a {
  color: #ff00ff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: underline overline line-through;
  text-transform: uppercase;
  padding: 5px 8px;
  border: 2px dashed #ff00ff;
  animation: rainbow-text 4s linear infinite;
  transition: transform 0.2s;
}
.footer-links a:hover { transform: rotate(10deg) scale(1.2); }
.footer-links a:focus { outline: 3px dashed #ff0000; }

.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  background: #ff00ff;
  color: #ffff00;
  padding: 10px 22px;
  border: 3px solid #00ff00;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  animation: spin-slow 10s linear infinite;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover {
  background: #00cc00;
  color: #ff00ff;
  animation: none;
}
.social-link:focus {
  outline: 4px dashed #ff0000;
  outline-offset: 3px;
}

.footer-info {
  margin: 18px 0;
  line-height: 2.2;
  font-size: 15px;
  font-weight: 700;
}
.footer-info a { color: #ffff00; text-decoration: underline; }
.footer-info span { color: #ff0000; }

.visitor-counter {
  background: #000060;
  color: #00ff00;
  font-family: 'Courier New', 'Lucida Console', monospace !important;
  font-size: 22px;
  padding: 10px 24px;
  border: 3px inset #ffffff;
  display: inline-block;
  margin: 12px auto;
  letter-spacing: 3px;
}

.best-viewed {
  color: #ff8800;
  font-size: 11px;
  font-style: italic;
  margin-top: 10px;
  text-decoration: underline;
  line-height: 2;
}

.copyright {
  background: #aa0000;
  color: #ffff00;
  padding: 12px;
  margin-top: 18px;
  font-size: 12px;
  text-transform: uppercase;
  animation: blink 6s step-start infinite;
  line-height: 2;
}

/* ===== FOCUS STATES ===== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 4px dashed #ff0000;
  outline-offset: 2px;
}

/* ===== UTILITIES ===== */
.text-center  { text-align: center; }
.blink-text   { animation: blink 1.5s step-start infinite; }
.rainbow-text { animation: rainbow-text 2s linear infinite; }
.shake-text   { animation: shake 3s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav ul       { display: none; flex-direction: column; }
  nav ul.open  { display: flex; }

  nav ul li a {
    border-right: none;
    border-bottom: 3px dashed #ff00ff;
    font-size: 15px;
    padding: 11px 16px;
  }

  .hero-image-container {
    transform: none;
    box-shadow: 8px 8px 0 #ff00ff;
  }

  .contact-form {
    transform: none;
    box-shadow: 10px 10px 0 #ff0000;
  }

  .pricing-card {
    transform: none;
    box-shadow: 10px 10px 0 #ff0000;
  }

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

  .info-card,
  .service-card,
  .process-step { transform: none !important; }

  .social-link { animation: none; }

  .team-card:nth-child(n) { transform: none !important; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin: 0 auto; }
  .about-photo-wrapper { text-align: center; }

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

  .no-costs-list { grid-template-columns: 1fr; }

  .portfolio-item:nth-child(n) { transform: none !important; }

  .footer-links { gap: 10px; }
}

@media (max-width: 480px) {
  header { padding: 15px 10px; }
  .site-logo { max-width: 100px; }
  section { padding: 30px 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
