/* Home Page Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c50e19;
  --secondary: #376cb8;
  --accent: #2a5a9a;
  --dark: #1A1A2E;
  --light: #F7F7F7;
}

.entry-header {
  display: none;
}

body {
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  background: var(--dark);
}

.hero-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #2a3a5a 50%, #376cb8 100%);
  overflow: hidden;
  padding-top: 80px;
  left: 50%;
  margin-left: -50vw;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}



/* Floating Tool Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tool-icon {
  position: absolute;
  font-size: clamp(2rem, 6vw, 3rem);
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.tool-icon:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  color: var(--primary);
}

.tool-icon:nth-child(2) {
  top: 60%;
  left: 15%;
  animation-delay: 1s;
  color: var(--secondary);
}

.tool-icon:nth-child(3) {
  top: 30%;
  right: 20%;
  animation-delay: 2s;
  color: var(--primary);
}

.tool-icon:nth-child(4) {
  bottom: 20%;
  right: 10%;
  animation-delay: 1.5s;
  color: var(--secondary);
}

.tool-icon:nth-child(5) {
  top: 70%;
  left: 50%;
  animation-delay: 0.5s;
  color: var(--primary);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Main Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

.text-content {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.text-content h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--light);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  animation: fadeIn 1s ease-out 0.5s backwards;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(197, 14, 25, 0.3);
  z-index: -1;
  animation: highlightExpand 1s ease-out 1s backwards;
}

@keyframes highlightExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: rgba(247, 247, 247, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeIn 1s ease-out 0.7s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out 0.9s backwards;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  animation: fadeIn 1s ease-out 1.1s backwards;
}

.btn {
  padding: clamp(0.75rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2.5rem);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 30px rgba(197, 14, 25, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(197, 14, 25, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Visual Element */
.visual-content {
  position: relative;
  animation: slideInRight 1s ease-out 0.5s backwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(197, 14, 25, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.service-card:nth-child(1) .service-icon {
  color: var(--primary);
}

.service-card:nth-child(2) .service-icon {
  color: var(--secondary);
}

.service-card:nth-child(3) .service-icon {
  color: var(--primary);
}

.service-card:nth-child(4) .service-icon {
  color: var(--secondary);
}

.service-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  color: var(--light);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.6);
  line-height: 1.5;
}

/* Badge */
.experience-badge {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: clamp(90px, calc(80px + 5vh), 110px);
  background: var(--primary);
  width: clamp(100px, 20vw, 150px);
  height: clamp(100px, 20vw, 150px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(197, 14, 25, 0.4);
  animation: rotate 20s linear infinite, fadeIn 1s ease-out 1.3s backwards;
  z-index: 15;
}

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

.badge-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: white;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  h1 {
    font-size: 4rem;
  }

  .experience-badge {
    top: unset;
    right: 1rem;
    width: 120px;
    height: 120px;
  }

  .badge-number {
    font-size: 2.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}
