@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #1a1a1a;
  --accent-color: #f7f7f7;
  --text-light: #ffffff;
  --text-gray: #a0a0a0;
  --card-dark: #151515;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
  background: rgba(10, 10, 10, 0.98);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.logo:hover {
  color: rgba(255, 255, 255, 0.85);
}

.logo img {
  width: 32px;
  height: 32px;
  fill: var(--accent-color);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo:hover img {
  opacity: 1;
  transform: rotate(-5deg) scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-menu a {
  display: flex;
  gap: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.08) 0%,
    rgba(243, 156, 18, 0.03) 100%
  );
  border-color: rgba(243, 156, 18, 0.2);
}

.nav-menu svg {
  width: 20px;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.nav-menu a:hover {
  transform: translateY(-1px);
  color: var(--accent-color);
  background: rgba(243, 156, 18, 0.1);
  border-color: rgba(243, 156, 18, 0.25);
}

.nav-menu a:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  margin-top: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(243, 156, 18, 0.04) 35px,
      rgba(243, 156, 18, 0.04) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.04) 35px,
      rgba(255, 255, 255, 0.04) 70px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(243, 156, 18, 0.03) 50px,
      rgba(243, 156, 18, 0.03) 100px
    );
}

/* Animated geometric shapes for hero background */
.hero-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 265px;
  height: 265px;
  border: 2px solid #cfd1f326;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 20s ease-in-out infinite;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(243, 156, 18, 0.03),
    transparent 70%
  );
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  border: 2px solid #cfd1f326;
  border-radius: 50%;
  animation: morphShape 20s ease-in-out infinite;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.02),
    transparent 60%
  );
  box-shadow: 0 0 40px rgba(243, 156, 18, 0.1);
}

/* Additional floating accent shapes */

@keyframes morphShape {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }

  33% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(120deg) scale(1.1);
  }

  66% {
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
    transform: rotate(240deg) scale(0.95);
  }
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-gray);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-content-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.cta-button {
  display: flex;
  padding: 5px 25px;
  background: var(--accent-color);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-items: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 7px rgba(243, 156, 18, 0.3);
}

.cta-button svg {
  width: 40px;
  height: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 100px 30px;
  background: var(--primary-dark);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8),
    rgba(15, 15, 15, 0.9)
  );
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 156, 18, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.9),
    rgba(20, 20, 20, 1)
  );
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.1),
    rgba(243, 156, 18, 0.05)
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(243, 156, 18, 0.15),
    rgba(243, 156, 18, 0.1)
  );
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.5px;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
}

.service-price {
  font-size: 13px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--primary-dark);
  padding: 40px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-text {
  color: var(--text-secundary);
  font-size: 14px;
  line-height: 1.8;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px 0;
    gap: 10px;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    padding: 12px 20px;
    display: block;
    font-size: 16px;
    position: relative;
  }

  .nav-menu svg {
    margin: 0 5px;
    position: absolute;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .coverflow-item {
    width: clamp(170px, 22vh, 220px);
    height: clamp(230px, 30vh, 300px);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-content-links {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .coverflow-container {
    height: clamp(250px, 38vh, 320px);
  }

  .coverflow-item {
    width: clamp(150px, 20vh, 200px);
    height: clamp(200px, 28vh, 280px);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Animation */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Smooth Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
