/* ================================
   YRUG CODERS - MAIN STYLES
   Warm-Tech Futuristic Design
   ================================ */

/* Color Palette Variables */
:root {
  --base-charcoal: #1a1b26;
  --primary-amber: #ffb84c;
  --secondary-coral: #ff6b6b;
  --highlight-mint: #3ed598;
  --gradient-indigo: #3e2c68;
  --gradient-peach: #ff9a8b;
  --text-sand: #f3eed9;
  --text-mist: #b5b5c3;
  --accent-warm: #ff8a65;
  --shadow-warm: rgba(255, 184, 76, 0.15);
  --navbar-height: 140px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  font-size: 16px;
}

body {
  font-family: "Fira Code", "Courier New", monospace;
  background: linear-gradient(135deg, var(--base-charcoal) 0%, #1e1f2e 100%);
  color: var(--text-sand);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-mist);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--primary-amber);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 184, 76, 0.4);
}

.title-underline {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  margin: 0 auto 1rem;
  border-radius: 2px;
  animation: warm-glow-pulse 2s ease-in-out infinite alternate;
  box-shadow: 0 0 10px var(--shadow-warm);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-mist);
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(
    45deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 27, 38, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 184, 76, 0.15);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo:hover .logo-svg {
  transform: scale(1.05);
}

.nav-logo:hover .logo-name {
  text-shadow: 0 0 15px rgba(255, 184, 76, 0.5);
}

.logo-svg {
  width: 50px;
  height: 50px;
}

/* Logo Components */
.logo-outer-ring {
  animation: logo-rotate 20s linear infinite;
}

.logo-hexagon-core {
  animation: logo-pulse 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(255, 184, 76, 0.3));
}

.logo-node {
  animation: logo-node-pulse 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px currentColor);
}

.logo-node:nth-child(3) {
  animation-delay: 0.2s;
}
.logo-node:nth-child(4) {
  animation-delay: 0.4s;
}
.logo-node:nth-child(5) {
  animation-delay: 0.6s;
}
.logo-node:nth-child(6) {
  animation-delay: 0.8s;
}
.logo-node:nth-child(7) {
  animation-delay: 1s;
}

.logo-letter-y {
  animation: logo-letter-glow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px #ffb84c);
}

.logo-letter-c {
  animation: logo-letter-glow 3s ease-in-out infinite alternate;
  animation-delay: 0.5s;
  filter: drop-shadow(0 0 8px #ff6b6b);
}

.logo-connection {
  animation: logo-connection-flow 2s ease-in-out infinite;
}

/* Logo Hover Effects */
.nav-logo:hover .logo-outer-ring {
  animation-duration: 5s;
}

.nav-logo:hover .logo-node {
  animation-duration: 1s;
}

.nav-logo:hover .logo-connection {
  animation-duration: 1s;
}

.logo-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-amber);
  text-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-sand);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-link:hover {
  color: var(--primary-amber);
  background: rgba(255, 184, 76, 0.1);
  box-shadow: 0 0 15px var(--shadow-warm);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-amber);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--navbar-height) !important;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-svg {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.node {
  fill: var(--primary-amber);
  filter: drop-shadow(0 0 12px rgba(255, 184, 76, 0.6));
  animation: warm-node-pulse 2s ease-in-out infinite alternate;
}

.connection {
  stroke: var(--highlight-mint);
  stroke-width: 1;
  opacity: 0.7;
  animation: warm-connection-flow 3s linear infinite;
}

.particle {
  fill: var(--secondary-coral);
  filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.6));
  animation: warm-particle-flow 4s linear infinite;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  margin-top: 2rem;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-amber);
  text-shadow: 0 0 30px rgba(255, 184, 76, 0.5);
}

.typing-text {
  display: inline-block;
  border-right: 3px solid var(--primary-amber);
  animation: warm-typing-cursor 1s infinite;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-sand);
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-mist);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(
    45deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  color: var(--base-charcoal);
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px var(--shadow-warm);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 184, 76, 0.4);
  filter: brightness(1.1);
}

.button-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
  transform: translateX(5px);
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
  padding: 8rem 0;
  background: linear-gradient(
    135deg,
    var(--base-charcoal) 0%,
    var(--gradient-indigo) 100%
  );
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: var(--primary-amber);
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(255, 184, 76, 0.3);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  color: var(--text-mist);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 184, 76, 0.2);
  border-radius: 10px;
  background: rgba(255, 184, 76, 0.05);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  border-color: var(--primary-amber);
  box-shadow: 0 0 25px var(--shadow-warm);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-amber);
  font-family: "Orbitron", sans-serif;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

.stat-label {
  color: var(--text-mist);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.hex {
  fill: none;
  stroke: var(--primary-amber);
  stroke-width: 2;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hex:hover {
  fill: rgba(255, 184, 76, 0.1);
  stroke-width: 3;
  filter: drop-shadow(0 0 20px var(--amber-glow));
}

.cube-face {
  fill: var(--primary-amber);
  opacity: 0.6;
  stroke: var(--primary-amber);
  stroke-width: 1;
}

.cube-front {
  fill-opacity: 0.8;
}
.cube-right {
  fill-opacity: 0.6;
}
.cube-top {
  fill-opacity: 0.4;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
  padding: 8rem 0;
  background: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255, 184, 76, 0.2);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 184, 76, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-amber);
  box-shadow: 0 20px 50px rgba(255, 184, 76, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: block;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.laptop-body,
.mobile-body,
.server-body {
  fill: none;
  stroke: var(--primary-amber);
  stroke-width: 2;
}

.laptop-screen,
.mobile-screen {
  fill: rgba(255, 184, 76, 0.1);
  stroke: var(--primary-amber);
  stroke-width: 1;
}

.laptop-base,
.mobile-button {
  fill: var(--primary-amber);
}

.code-line {
  stroke: var(--accent-mint);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0;
  animation: code-appear 2s ease-in-out infinite;
}

.code-line:nth-child(1) {
  animation-delay: 0s;
}
.code-line:nth-child(2) {
  animation-delay: 0.2s;
}
.code-line:nth-child(3) {
  animation-delay: 0.4s;
}
.code-line:nth-child(4) {
  animation-delay: 0.6s;
}
.code-line:nth-child(5) {
  animation-delay: 0.8s;
}

.app-elements rect,
.app-elements circle {
  fill: var(--primary-amber);
  opacity: 0.8;
}

.server-slot {
  fill: rgba(255, 184, 76, 0.2);
  stroke: var(--primary-amber);
  stroke-width: 1;
}

.data-point {
  fill: var(--secondary-coral);
  filter: drop-shadow(0 0 6px var(--coral-glow));
}

.data-path {
  fill: none;
  stroke: var(--secondary-coral);
  stroke-width: 2;
  stroke-dasharray: 10 5;
  animation: warm-dash-flow 2s linear infinite;
}

.cloud-shape {
  fill: rgba(255, 184, 76, 0.1);
  stroke: var(--primary-amber);
  stroke-width: 2;
}

.gear-body {
  fill: var(--primary-amber);
  opacity: 0.8;
}

.gear-tooth {
  fill: var(--primary-amber);
}

.service-card h3 {
  color: var(--primary-amber);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

.service-card p {
  color: var(--text-mist);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 184, 76, 0.95),
    rgba(255, 107, 107, 0.95)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--base-charcoal);
}

.overlay-content ul {
  list-style: none;
  font-weight: bold;
}

.overlay-content li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* ================================
   PROJECTS SECTION
   ================================ */

.projects {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 184, 76, 0.2);
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
  border-color: var(--secondary-coral);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.project-card:hover .project-svg {
  transform: scale(1.1);
}

.circuit-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .circuit-overlay {
  opacity: 1;
}

.circuit-line {
  stroke: var(--accent-mint);
  stroke-width: 2;
  stroke-dasharray: 10 5;
  animation: circuit-flow 2s linear infinite;
}

.circuit-node {
  fill: var(--accent-mint);
  filter: drop-shadow(0 0 10px var(--mint-glow));
  animation: node-pulse 1s ease-in-out infinite alternate;
}

.mobile-mockup {
  fill: none;
  stroke: var(--primary-amber);
  stroke-width: 2;
}

.mobile-screen {
  fill: rgba(255, 184, 76, 0.1);
}

.chart-bar {
  fill: var(--secondary-coral);
  opacity: 0.8;
}

.chart-circle {
  fill: none;
  stroke: var(--secondary-coral);
  stroke-width: 3;
  opacity: 0.8;
}

.blockchain-node {
  fill: rgba(62, 213, 152, 0.2);
  stroke: var(--accent-mint);
  stroke-width: 2;
}

.blockchain-connection {
  fill: none;
  stroke: var(--accent-mint);
  stroke-width: 2;
  stroke-dasharray: 5 5;
  animation: dash-flow 3s linear infinite;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  color: var(--primary-amber);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

.project-content p {
  color: var(--text-mist);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 184, 76, 0.1);
  color: var(--primary-amber);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 184, 76, 0.3);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(255, 184, 76, 0.2);
  border-color: var(--primary-amber);
  box-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

/* ================================
   TECH STACK SECTION
   ================================ */

.tech-stack {
  padding: 8rem 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.tech-orbit {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 10;
}

.center-logo {
  width: 100%;
  height: 100%;
}

.center-hex {
  fill: rgba(255, 184, 76, 0.1);
  stroke: var(--primary-amber);
  stroke-width: 2;
  filter: drop-shadow(0 0 20px var(--amber-glow));
}

.center-text {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: bold;
  fill: var(--primary-amber);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 184, 76, 0.2);
  border-radius: 50%;
  animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
  width: 300px;
  height: 300px;
  top: 150px;
  left: 150px;
  animation-duration: 20s;
}

.orbit-2 {
  width: 400px;
  height: 400px;
  top: 100px;
  left: 100px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 500px;
  height: 500px;
  top: 50px;
  left: 50px;
  animation-duration: 40s;
}

.tech-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 184, 76, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: counter-rotate 20s linear infinite;
}

.orbit-1 .tech-item {
  animation-duration: 20s;
}
.orbit-2 .tech-item {
  animation-duration: 30s;
  animation-direction: reverse;
}
.orbit-3 .tech-item {
  animation-duration: 40s;
}

.tech-item:hover {
  transform: scale(1.2);
  border-color: var(--primary-amber);
  box-shadow: 0 0 30px rgba(255, 184, 76, 0.5);
}

.tech-item svg {
  width: 40px;
  height: 40px;
}

/* Position tech items around orbits */
.orbit-1 .tech-item:nth-child(1) {
  top: -30px;
  left: calc(50% - 30px);
}
.orbit-1 .tech-item:nth-child(2) {
  top: calc(50% - 30px);
  right: -30px;
}
.orbit-1 .tech-item:nth-child(3) {
  bottom: -30px;
  left: calc(50% - 30px);
}
.orbit-1 .tech-item:nth-child(4) {
  top: calc(50% - 30px);
  left: -30px;
}

.orbit-2 .tech-item:nth-child(1) {
  top: -30px;
  left: calc(25% - 30px);
}
.orbit-2 .tech-item:nth-child(2) {
  top: -30px;
  right: calc(25% - 30px);
}
.orbit-2 .tech-item:nth-child(3) {
  bottom: -30px;
  right: calc(25% - 30px);
}
.orbit-2 .tech-item:nth-child(4) {
  bottom: -30px;
  left: calc(25% - 30px);
}

.orbit-3 .tech-item:nth-child(1) {
  top: -30px;
  left: calc(20% - 30px);
}
.orbit-3 .tech-item:nth-child(2) {
  top: -30px;
  right: calc(20% - 30px);
}
.orbit-3 .tech-item:nth-child(3) {
  bottom: -30px;
  right: calc(20% - 30px);
}
.orbit-3 .tech-item:nth-child(4) {
  bottom: -30px;
  left: calc(20% - 30px);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 184, 76, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-amber);
  box-shadow: 0 20px 50px rgba(255, 184, 76, 0.2);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.testimonial-avatar svg {
  width: 100%;
  height: 100%;
}

.avatar-bg {
  fill: rgba(255, 184, 76, 0.1);
  stroke: var(--primary-amber);
  stroke-width: 2;
}

.avatar-head {
  fill: var(--primary-amber);
  opacity: 0.8;
}

.avatar-body {
  fill: none;
  stroke: var(--primary-amber);
  stroke-width: 2;
  stroke-linecap: round;
}

.avatar-eye {
  fill: var(--secondary-coral);
  animation: blink 3s ease-in-out infinite;
}

.left-eye {
  animation-delay: 0s;
}
.right-eye {
  animation-delay: 0.1s;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-amber);
  position: absolute;
  opacity: 0.3;
}

.testimonial-card blockquote::before {
  top: -1rem;
  left: -1rem;
}

.testimonial-card blockquote::after {
  bottom: -2rem;
  right: -1rem;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
}

.testimonial-card cite strong {
  color: var(--primary-amber);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-card cite span {
  color: #8a8a8a;
  font-size: 0.9rem;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
  padding: 8rem 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.contact-svg {
  width: 100%;
  height: 100%;
}

.code-text {
  font-family: "Fira Code", monospace;
  font-size: 14px;
  fill: var(--accent-mint);
  opacity: 0.6;
  animation: code-scroll 10s linear infinite;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.contact-info h3 {
  color: var(--primary-amber);
  margin-bottom: 2rem;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(255, 184, 76, 0.3);
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 184, 76, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 184, 76, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary-amber);
  box-shadow: 0 0 20px rgba(255, 184, 76, 0.2);
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-amber);
}

.contact-item span {
  color: #e0e0e0;
  font-weight: 500;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.address-details span {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-link {
  color: #e0e0e0;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-amber);
  text-shadow: 0 0 8px rgba(255, 184, 76, 0.3);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 184, 76, 0.2);
  border-radius: 10px;
  color: #e0e0e0;
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-amber);
  box-shadow: 0 0 20px rgba(255, 184, 76, 0.3);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #8a8a8a;
  transition: all 0.3s ease;
  pointer-events: none;
  background: #0a0a0a;
  padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.8rem;
  color: var(--primary-amber);
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  transition: width 0.3s ease;
}

.form-group input:focus ~ .input-border,
.form-group select:focus ~ .input-border,
.form-group textarea:focus ~ .input-border {
  width: 100%;
}

.submit-button {
  background: linear-gradient(
    45deg,
    var(--primary-amber),
    var(--secondary-coral)
  );
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  color: var(--base-charcoal);
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 184, 76, 0.4);
  filter: brightness(1.1);
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
  transform: translateX(5px);
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: #000;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.footer-svg {
  width: 100%;
  height: 100%;
}

.matrix-char {
  font-family: "Fira Code", monospace;
  font-size: 16px;
  fill: var(--accent-mint);
  animation: matrix-fall 5s linear infinite;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-section h4 {
  color: var(--primary-amber);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-amber);
  padding-left: 0.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-section p {
  color: #8a8a8a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 184, 76, 0.1);
  border: 1px solid rgba(255, 184, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 184, 76, 0.2);
  border-color: var(--primary-amber);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 184, 76, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 184, 76, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  color: #8a8a8a;
  font-size: 0.9rem;
}

.footer-link {
  color: var(--primary-amber);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-coral);
  text-shadow: 0 0 8px rgba(255, 184, 76, 0.3);
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 184, 76, 0.5);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 184, 76, 0.8);
  }
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0 0 10px var(--amber-glow));
  }
  100% {
    filter: drop-shadow(0 0 20px var(--amber-glow));
  }
}

@keyframes typing-cursor {
  0%,
  50% {
    border-color: var(--primary-amber);
  }
  51%,
  100% {
    border-color: transparent;
  }
}

@keyframes node-pulse {
  0% {
    r: 3;
    opacity: 1;
  }
  100% {
    r: 5;
    opacity: 0.7;
  }
}

@keyframes connection-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

@keyframes particle-flow {
  0% {
    cx: 200;
    cy: 150;
    opacity: 1;
  }
  25% {
    cx: 400;
    cy: 200;
    opacity: 0.8;
  }
  50% {
    cx: 800;
    cy: 250;
    opacity: 0.6;
  }
  75% {
    cx: 1200;
    cy: 120;
    opacity: 0.4;
  }
  100% {
    cx: 1600;
    cy: 180;
    opacity: 0;
  }
}

@keyframes code-appear {
  0%,
  30% {
    opacity: 0;
  }
  50%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes dash-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

@keyframes circuit-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 15;
  }
}

@keyframes orbit-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes counter-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes blink {
  0%,
  90%,
  100% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
}

@keyframes code-scroll {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}

@keyframes matrix-fall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(500px);
    opacity: 0;
  }
}
