/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --accent-yellow: #ffd700;
  --accent-orange: #ff8c00;
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --text-light: #999999;
  --gradient-primary: linear-gradient(135deg, #ffd700, #ff8c00);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.5);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Orbitron", monospace;
  --font-body: "Rajdhani", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--primary-black);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.tire-loader {
  text-align: center;
}

.tire-outer {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
  animation: tireRotate 2s linear infinite;
}

.tire-inner {
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-yellow);
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.tire-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.loading-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: var(--secondary-black);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  animation: loadingProgress 3s ease-in-out;
}

@keyframes tireRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-heavy);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  animation: logoGlow 3s ease-in-out infinite;
}

.tire-svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-yellow);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-yellow);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--accent-yellow);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.6));
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, #ffd700, transparent), radial-gradient(2px 2px at 40px 70px, #ff8c00, transparent), radial-gradient(1px 1px at 90px 40px, #ffd700, transparent),
    radial-gradient(1px 1px at 130px 80px, #ff8c00, transparent), radial-gradient(2px 2px at 160px 30px, #ffd700, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particlesMove 20s linear infinite;
  opacity: 0.3;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
}

@keyframes particlesMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-line {
  display: block;
  animation: titleReveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
  color: var(--text-white);
}
.title-line:nth-child(2) {
  animation-delay: 0.4s;
  color: var(--accent-yellow);
  text-shadow: var(--shadow-glow);
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
  color: var(--accent-yellow);
  text-shadow: var(--shadow-glow);
}
.title-line:nth-child(4) {
  animation-delay: 0.8s;
  color: var(--text-white);
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-primary,
.cta-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: var(--gradient-primary);
  color: var(--primary-black);
  box-shadow: var(--shadow-glow);
}

.cta-secondary {
  background: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-primary:hover .button-glow,
.cta-secondary:hover .button-glow {
  left: 100%;
}

.hero-car {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.car-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  position: relative;
  z-index: 2;
}

.car-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.3), transparent);
  border-radius: var(--border-radius);
  z-index: 1;
  animation: carGlow 3s ease-in-out infinite;
}

.speed-lines {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
  animation: speedLines 2s ease-in-out infinite;
}

@keyframes carGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes speedLines {
  0% {
    transform: translateX(-200px) translateY(-50%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(200px) translateY(-50%);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 12px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-yellow);
  border-bottom: 2px solid var(--accent-yellow);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-yellow);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: var(--shadow-glow);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--secondary-black);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 215, 0, 0.05) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--primary-black);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  left: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
}

.service-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.feature {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
}

.service-btn {
  background: transparent;
  color: var(--accent-yellow);
  border: 2px solid var(--accent-yellow);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--accent-yellow);
  color: var(--primary-black);
  box-shadow: var(--shadow-glow);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--primary-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.9), rgba(255, 140, 0, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
  padding: 30px;
}

.gallery-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gallery-overlay p {
  color: var(--primary-black);
  font-weight: 500;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--secondary-black);
  position: relative;
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonials-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 40px;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  flex: 1;
}

.quote-icon {
  font-size: 4rem;
  color: var(--accent-yellow);
  font-family: serif;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
}

.star {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--accent-yellow);
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-yellow);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.carousel-btn {
  background: var(--accent-yellow);
  color: var(--primary-black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.carousel-btn:hover {
  background: var(--accent-orange);
  transform: scale(1.1);
}

.carousel-indicators {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--accent-yellow);
  box-shadow: var(--shadow-glow);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--primary-black);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--secondary-black);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--accent-yellow);
  box-shadow: var(--shadow-glow);
  transform: translateX(10px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black);
  flex-shrink: 0;
}

.info-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-yellow);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-content p {
  color: var(--text-gray);
  line-height: 1.5;
}

.contact-form {
  background: var(--secondary-black);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-yellow);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-header p {
  color: var(--text-gray);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--primary-black);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--primary-black);
  border: none;
  padding: 18px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Footer */
.footer {
  background: var(--secondary-black);
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-black);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-yellow);
  color: var(--primary-black);
  border-color: var(--accent-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-yellow);
  transform: translateX(5px);
}

.footer-section li {
  color: var(--text-gray);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  position: relative;
}

.footer-line {
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.9rem;
  animation: ledText 3s ease-in-out infinite;
}

@keyframes ledText {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: var(--transition);
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-btn {
  background: var(--gradient-primary);
  color: var(--primary-black);
  border: none;
  padding: 15px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow);
  animation: floatingPulse 2s ease-in-out infinite;
}

.floating-btn svg {
  width: 20px;
  height: 20px;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

@keyframes floatingPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
    gap: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .carousel-controls {
    padding: 0 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: var(--transition);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Utility Classes */
.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .floating-cta,
  .hero-background {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
