body {
  background: #181818;
  color: #f0f0f0;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: 70px;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: none;
  box-sizing: border-box;
}

.sticky-header.scrolled {
  background: #000;
  justify-content: space-between;
  box-shadow: 0 2px 16px #000a;
}

.header-center-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}

.sticky-header.scrolled .header-center-logo {
  position: static;
  flex: 0 0 auto;
  justify-content: flex-start;
  margin: 0;
  pointer-events: auto;
}

.header-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
  box-shadow: none;
  border: none;
  transition: width 0.3s, height 0.3s;
}

.logo-text {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #00fff7, 0 0 2px #ff4fd8;
}

nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: opacity 0.4s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Orbitron', Arial, sans-serif;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: #00fff7;
  border-bottom: 2px solid #ff4fd8;
}

.hero-section,
.services-section,
.vendors-section,
.about-section,
.gallery-section,
.reviews-section,
.contact-section {
  padding: 4rem 1rem;
  margin: 0 auto;
}

.hero-section {
  background: linear-gradient(135deg, #232323 0%, #181818 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  margin-top: 0;
}

.services-section {
  background: #181828;
}

.vendors-section {
  background: #1a0033;
}

.about-section {
  background: #1a0033;
  padding: 4rem 1rem 2rem 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('images/about.jpg');
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(2);
  opacity: 0.18;
  z-index: -1;
  filter: blur(2px) brightness(0.7);
  pointer-events: none;
}

.about-content, .about-section h2 {
  position: relative;
  z-index: 1;
}

.gallery-section {
  background: #181828;
}

.reviews-section {
  background: #1a0033;
  padding: 4rem 1rem 2rem 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1px;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('images/reviews.jpg');
  background-size: cover;
  background-position: center;
  transform: translateZ(-1px) scale(2);
  opacity: 0.15;
  z-index: -1;
  filter: blur(2px) brightness(0.5);
  pointer-events: none;
}

.reviews-content, .reviews-section h2 {
  position: relative;
  z-index: 1;
}

.contact-section {
  background: #181828;
  margin-bottom: 0;
  padding-bottom: 4rem;
}

.hero-section h1,
.services-section h2,
.vendors-section h2,
.about-section h2,
.gallery-section h2,
.reviews-section h2,
.contact-section h2 {
  margin-bottom: 2.5rem;
  margin-top: 0;
}

#hero {
  padding-bottom: 0;
}

.hero-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
  box-shadow: none;
  border: none;
  transition: width 0.3s, height 0.3s;
}

.hero-section h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.5rem;
  color: #00fff7;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ff4fd8;
}

.hero-section p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-btn {
  background: #00fff7;
  color: #181818;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-family: 'Orbitron', Arial, sans-serif;
  border-radius: 30px;
  box-shadow: 0 0 10px #00fff7, 0 0 2px #ff4fd8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cta-btn:hover {
  background: #ff4fd8;
  color: #fff;
}

.services-section h2 {
  color: #00fff7;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 8px #ff4fd8;
}

.vendors-section h2 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 8px #00fff7;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #22223a;
  border: 2px solid #ff4fd8;
  border-radius: 16px;
  box-shadow: 0 0 16px #00fff744;
  padding: 2rem 1.5rem;
  width: 300px;
  max-width: 90vw;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 32px #00fff7aa;
}

.service-card:hover .gallery-indicator {
  opacity: 1;
}

.service-card:hover .service-card-image-wrapper img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.service-card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #181828;
  aspect-ratio: 1 / 1;
}

.service-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}

.gallery-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #00fff7;
  text-align: center;
  padding: 0.6rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.3s;
  pointer-events: none; /* Allows clicks to go through to the card */
}

.service-card h3 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  border-bottom: 1px solid #ff4fd8;
  padding-bottom: 0.5rem;
}

.service-card p {
  color: #fff;
}

.about-section h2 {
  color: #00fff7;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 8px #ff4fd8;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  justify-content: center;
}

.about-image {
  flex: 0 0 400px;
  max-width: 450px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 16px #00fff7aa;
}

.about-info {
  flex: 1 1 500px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text {
  color: #fff;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.socials-inline {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 247, 0.3);
}

.socials-inline p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.social-btn {
  color: #00fff7;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  background: rgba(0, 255, 247, 0.1);
  border: 1px solid rgba(0, 255, 247, 0.3);
  text-shadow: 0 0 4px #00fff7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.social-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  filter: drop-shadow(0 0 4px currentColor);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-btn:hover {
  color: #fff;
  background: rgba(0, 255, 247, 0.2);
  border-color: #00fff7;
  text-shadow: 0 0 8px #00fff7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 247, 0.3);
}

.social-btn:hover .social-icon {
  filter: drop-shadow(0 0 8px #fff);
  transform: scale(1.1);
}

.social-btn.youtube:hover {
  color: #fff;
  background: rgba(255, 0, 0, 0.2);
  border-color: #ff0000;
  text-shadow: 0 0 8px #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.social-btn.youtube:hover .social-icon {
  filter: drop-shadow(0 0 8px #ff0000);
}

.social-btn.facebook:hover {
  color: #fff;
  background: rgba(24, 119, 242, 0.2);
  border-color: #1877f2;
  text-shadow: 0 0 8px #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover .social-icon {
  filter: drop-shadow(0 0 8px #1877f2);
}

.social-btn.instagram:hover {
  color: #fff;
  background: rgba(228, 64, 95, 0.2);
  border-color: #e4405f;
  text-shadow: 0 0 8px #e4405f;
  box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
}

.social-btn.instagram:hover .social-icon {
  filter: drop-shadow(0 0 8px #e4405f);
}

.social-btn.truck-instagram:hover {
  color: #fff;
  background: rgba(255, 79, 216, 0.2);
  border-color: #ff4fd8;
  text-shadow: 0 0 8px #ff4fd8;
  box-shadow: 0 4px 12px rgba(255, 79, 216, 0.3);
}

.social-btn.truck-instagram:hover .social-icon {
  filter: drop-shadow(0 0 8px #ff4fd8);
}

.gallery-section h2 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 8px #00fff7;
}

.gallery-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid-main .gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.gallery-grid-main .gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00fff7;
  border-color: #00fff7;
}

.gallery-grid-main .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: filter 0.3s;
}

.gallery-grid-main .gallery-item:hover img {
  filter: brightness(1.1) contrast(1.1);
}

.reviews-section h2 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 8px #00fff7;
}

.reviews-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.review-placeholder {
  background: #22223a;
  border: 2px solid #00fff7;
  border-radius: 12px;
  padding: 1rem 2rem;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 8px #ff4fd844;
}

.review-placeholder span {
  color: #ff4fd8;
  font-size: 0.95rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.review-card {
  background: #22223a;
  border: 2px solid #00fff7;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 0 16px #ff4fd844;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px #ff4fd866;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author {
  font-family: 'Orbitron', Arial, sans-serif;
  color: #00fff7;
  font-size: 1.1rem;
  font-weight: 700;
}

.review-time {
  color: #888;
  font-size: 0.9rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #ffd700;
  font-size: 1.2rem;
}

.star.empty {
  color: #444;
}

.review-text {
  line-height: 1.6;
  color: #fff;
  font-size: 1rem;
}

.review-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.review-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #00fff7;
  font-family: 'Orbitron', Arial, sans-serif;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #22223a;
  border-top: 3px solid #00fff7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.review-error {
  background: #22223a;
  border: 2px solid #ff4fd8;
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 16px #ff4fd844;
}

.review-error h3 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  margin-bottom: 1rem;
}

.cache-status {
  text-align: center;
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(24, 24, 40, 0.5);
  border-radius: 8px;
  border: 1px solid #333;
}

.cache-status small {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 0.8rem;
  opacity: 0.8;
}

.gallery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #00fff7;
  font-family: 'Orbitron', Arial, sans-serif;
  grid-column: 1 / -1;
  padding: 2rem;
}

.gallery-loading p {
  margin: 0;
  font-size: 0.9rem;
}

.contact-section h2 {
  margin-bottom: 2.5rem;
  margin-top: 0;
}

.contact-columns {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.contact-info {
  flex: 1 1 300px;
  max-width: 400px;
  font-size: 1.15rem;
  text-align: left;
  color: #fff;
  background: rgba(24, 24, 40, 0.7);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 12px #00fff733;
}

.contact-info a {
  color: #00fff7;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s, text-shadow 0.2s;
}

.contact-info a:hover {
  color: #ff4fd8;
  text-shadow: 0 0 8px #ff4fd8;
}

.contact-form {
  flex: 1 1 340px;
  max-width: 440px;
  background: rgba(24, 24, 40, 0.7);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 12px #00fff733;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 2px solid #ff4fd8;
  background: #22223a;
  color: #fff;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  resize: none;
}

.contact-form button {
  background: #00fff7;
  color: #181828;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-family: 'Orbitron', Arial, sans-serif;
  border-radius: 30px;
  box-shadow: 0 0 10px #00fff7, 0 0 2px #ff4fd8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
  background: #ff4fd8;
  color: #fff;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  display: none;
}
.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

footer {
  background: #1a0033;
  color: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 2px solid #ff4fd8;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: #00fff7;
  text-decoration: none;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #ff4fd8;
}

@media (max-width: 900px) {
  .services-grid, .about-content {
    flex-direction: column;
    align-items: center;
  }
  .sticky-header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }
  nav ul {
    gap: 1rem;
  }
  .contact-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-info, .contact-form {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .header-logo {
    width: 44px;
    height: 44px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .review-card {
    padding: 1.5rem;
  }
  .review-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .review-author {
    font-size: 1rem;
  }
  .review-time {
    font-size: 0.8rem;
  }
}

.hero-image-wrapper.large-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  margin: 0 auto 2rem auto;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-bg-image.large-hero-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  display: block;
  z-index: 1;
  opacity: 1;
}

.hero-overlay-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 13rem 1rem 2rem 1rem;
  color: #fff;
  text-shadow: 0 2px 24px #000, 0 0 8px #00fff7;
  text-align: center;
  opacity: 1;
}

.hero-overlay-content h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.5rem;
  color: #00fff7;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #ff4fd8, 0 2px 24px #000;
}

.hero-overlay-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 24px #000;
}

.hero-logo-hero {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translate(-50%, 0);
  width: 220px;
  height: auto;
  max-width: 60vw;
  background: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 24px #00fff7);
  opacity: 1;
  z-index: 3;
  pointer-events: none;
  margin-bottom: 2.5rem;
}

.header-logo-header {
  opacity: 0;
  transition: opacity 0.4s;
}

.sticky-header.scrolled .header-logo-header {
  opacity: 1;
}

.sticky-header:not(.scrolled) .header-logo-header {
  opacity: 0;
}

/* Remove the fade-out of hero logo when header is scrolled */
.sticky-header.scrolled ~ #hero .hero-logo-hero {
  opacity: 1;
}

/* Animation keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes flipUp {
  from { opacity: 0; transform: rotateX(60deg); }
  to { opacity: 1; transform: none; }
}

[data-section] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity;
}

/* Mobile-specific animations */
[data-section].mobile {
  transform: translateY(15px); /* Smaller initial offset for mobile */
  transition: opacity 0.4s ease-out, transform 0.4s ease-out; /* Faster transitions on mobile */
}

[data-section].in-view {
  opacity: 1;
  transform: translateY(0);
  /* Remove will-change after animation completes to free up resources */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, will-change 0s linear 0.6s;
  will-change: auto;
}

/* Animation variations */
[data-section][data-anim="fade-in"] {
  transform: translateY(0);
}

[data-section][data-anim="slide-up"].mobile {
  transform: translateY(15px);
}

[data-section][data-anim="slide-right"] {
  transform: translateX(-30px);
}

[data-section][data-anim="slide-right"].mobile {
  transform: translateX(-15px);
}

[data-section][data-anim="zoom-in"] {
  transform: scale(0.95);
}

[data-section][data-anim="zoom-in"].mobile {
  transform: scale(0.97);
}

[data-section][data-anim="flip-up"] {
  transform: rotateX(-10deg) translateY(30px);
  transform-origin: center bottom;
}

[data-section][data-anim="flip-up"].mobile {
  transform: rotateX(-5deg) translateY(15px);
}

/* When in view - maintain final state */
[data-section].in-view[data-anim="fade-in"],
[data-section].in-view[data-anim="slide-up"],
[data-section].in-view[data-anim="slide-right"],
[data-section].in-view[data-anim="zoom-in"],
[data-section].in-view[data-anim="flip-up"] {
  opacity: 1;
  transform: none;
}

/* Ensure animations don't cause layout shifts */
.section-content {
  min-height: 100px;
}

@media (max-width: 900px) {
  .section-content {
    min-height: 80px;
  }
  
  [data-section] {
    transition-delay: 0.1s;
  }
  
  /* Reduce animation distance for all variations on mobile */
  [data-section][data-anim] {
    transform: translateY(15px);
  }
  
  [data-section].in-view {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out, will-change 0s linear 0.4s;
  }
}

/* Neon divider between sections */
.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00fff7 0%, #ff4fd8 100%);
  box-shadow: 0 0 12px #00fff7, 0 0 8px #ff4fd8, 0 0 16px 2px #fff8;
  margin: 2rem 0;
  border: none;
  position: relative;
  z-index: 2;
}
.section-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #111;
  z-index: -1;
}

/* Add spacing above divider except first */
.section-divider:not(:first-child) {
  margin-top: -2rem;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1240px) {
  .section-content {
    max-width: 98vw;
    padding: 0 1rem;
  }
}

[data-section].in-view {
  opacity: 1;
  transform: none;
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #00fff7;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,20,0.98);
  z-index: 1050;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.mobile-nav a {
  color: #00fff7;
  font-size: 2rem;
  text-decoration: none;
  font-family: 'Orbitron', Arial, sans-serif;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #ff4fd8;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  nav {
    display: none !important;
  }
  .header-center-logo {
    position: static;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
  }
  .contact-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-info, .contact-form {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .hero-logo-hero {
    width: 140px;
    height: auto;
    max-width: 80vw;
    top: 3%;
    margin-bottom: 1.5rem;
  }
  .hero-overlay-content {
    padding-top: 9rem;
  }
  .services-grid {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .about-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .hero-overlay-content h1 {
    font-size: 1.5rem;
  }
  .hero-overlay-content p {
    font-size: 1rem;
  }
}

/* Image Modal Styles */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #22223a;
  border: 2px solid #00fff7;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 0 32px #00fff7aa;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: #00fff7;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.2s;
  background: rgba(0, 0, 0, 0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #ff4fd8;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #00fff7;
  border: 2px solid #00fff7;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2001;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav:hover:not(:disabled) {
  background: #00fff7;
  color: #000;
}

.modal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-prev {
  left: 1rem;
}

.modal-next {
  right: 1rem;
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.modal-caption {
  color: #fff;
  padding: 1rem 0 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 100%;
  word-wrap: break-word;
  text-align: center;
}

.modal-counter {
  color: #00fff7;
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Orbitron', Arial, sans-serif;
  padding-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .modal-content {
    max-width: 95vw;
    padding: 0.5rem;
  }
  .modal-close {
    top: 0.25rem;
    right: 0.5rem;
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
  }
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .modal-prev {
    left: 0.5rem;
  }
  .modal-next {
    right: 0.5rem;
  }
  .modal-caption {
    font-size: 0.9rem;
    padding: 0.5rem 0 0.25rem 0;
  }
  .modal-counter {
    font-size: 0.8rem;
    padding-bottom: 0.25rem;
  }
}

.instagram-links {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.instagram-links a {
  color: #00fff7;
  text-decoration: none;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.2rem;
  transition: color 0.2s, text-shadow 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.instagram-links a:hover {
  color: #ff4fd8;
  text-shadow: 0 0 8px #ff4fd8;
  border-bottom-color: #ff4fd8;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.vendor-item {
  background: #22223a;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.vendor-item:hover {
  transform: translateY(-5px);
  border-color: #00fff7;
  box-shadow: 0 0 16px #00fff766;
}

.vendor-item img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  filter: brightness(0.9) grayscale(0.2);
  transition: filter 0.2s;
}

.vendor-item:hover img {
  filter: brightness(1.1) grayscale(0);
}

.vendor-item span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.vendors-footer {
  text-align: center;
  margin-top: 3rem;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3rem;
  color: #00fff7;
  text-shadow: 0 0 8px #ff4fd8;
}

/* Staggered Services Layout */
.services-staggered {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: #22223a;
  border: 2px solid #ff4fd8;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 16px #00fff744;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.service-row:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 32px #00fff7aa;
}

.service-row:hover .gallery-indicator {
  opacity: 1;
}

.service-row:hover .service-image img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #181828;
  aspect-ratio: 1 / 1;
  flex: 0 0 300px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}

.service-content {
  flex: 1;
  text-align: left;
}

.service-content h3 {
  color: #ff4fd8;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  text-shadow: 
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
  font-weight: 900;
  margin: 0 0 1rem 0;
}

.service-content p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Left/Right alternating layout */
.service-left {
  flex-direction: row;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .service-row {
    flex-direction: column !important;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .service-image {
    flex: 0 0 250px;
    width: 100%;
    max-width: 300px;
  }
  
  .service-content {
    text-align: center;
  }
  
  .service-content h3 {
    font-size: 1.3rem;
  }
  
  .service-content p {
    font-size: 1rem;
  }
}

/* Socials Section Styles */
.socials-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid #00fff7;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 255, 247, 0.15);
  position: relative;
  overflow: hidden;
}

.socials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00fff7, #ff4fd8, #00fff7);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.socials-section h3 {
  color: #00fff7;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.8rem;
  text-shadow: 0 0 10px #00fff7;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.socials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 247, 0.2);
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #00fff7;
  box-shadow: 0 10px 25px rgba(0, 255, 247, 0.3);
}

.social-link.youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.social-link.facebook:hover {
  border-color: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
  border-color: #e4405f;
  box-shadow: 0 10px 25px rgba(228, 64, 95, 0.3);
}

.social-link.truck-instagram:hover {
  border-color: #ff4fd8;
  box-shadow: 0 10px 25px rgba(255, 79, 216, 0.3);
}

.social-icon {
  width: 28px;
  height: 28px;
  color: #00fff7;
  filter: drop-shadow(0 0 6px #00fff7);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.social-link:hover .social-icon {
  filter: drop-shadow(0 0 12px #fff);
  transform: scale(1.1);
}

.social-link.youtube:hover .social-icon {
  color: #ff0000;
  filter: drop-shadow(0 0 12px #ff0000);
}

.social-link.facebook:hover .social-icon {
  color: #1877f2;
  filter: drop-shadow(0 0 12px #1877f2);
}

.social-link.instagram:hover .social-icon {
  color: #e4405f;
  filter: drop-shadow(0 0 12px #e4405f);
}

.social-link.truck-instagram:hover .social-icon {
  color: #ff4fd8;
  filter: drop-shadow(0 0 12px #ff4fd8);
}

.social-text {
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

.social-link:hover .social-text {
  color: #fff;
  text-shadow: 0 0 10px #fff;
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image {
    flex: 1 1 auto;
    max-width: 100%;
  }
  
  .about-info {
    flex: 1 1 auto;
    max-width: 100%;
  }
  
  .socials-section {
    padding: 2rem;
  }
  
  .socials-section h3 {
    font-size: 1.5rem;
  }
  
  .socials-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-link {
    flex: 0 1 220px;
    min-width: 200px;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .socials-grid {
    flex-direction: column;
  }
  
  .social-link {
    flex: 1 1 auto;
    min-width: auto;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }
  
  .social-text {
    font-size: 1rem;
  }
  
  .socials-section {
    padding: 1.5rem;
  }
}

/* Add a wrapper for the content to ensure proper z-index stacking */
.about-content-wrapper,
.reviews-content-wrapper {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
  will-change: transform;
}

/* Mobile optimization */
@media (max-width: 900px) {
  .about-section,
  .reviews-section {
    perspective: none;
    transform-style: flat;
  }
  
  .about-section::before,
  .reviews-section::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
} 