/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-color: #FF5A00; /* Energetic Orange */
  --secondary-color: #0075FF; /* Electric Blue */
  --bg-dark: #0A0A0A; /* Deep Dark */
  --bg-card: #141414; /* Card Dark */
  --bg-card-hover: #1c1c1c; 
  --text-light: #F0F0F0;
  --text-muted: #A0A0A0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Outfit', sans-serif;
}

/* Custom Utilities */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-dark-custom { background-color: var(--bg-dark); }
.bg-card { background-color: var(--bg-card); border-radius: 12px; }

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), #ff8a00);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 90, 0, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 90, 0, 0.5);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 117, 255, 0.4);
  transform: translateY(-2px);
}

/* Navbar */
.navbar-dark {
  background-color: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.brand-orange { color: var(--primary-color); }

.nav-link {
  font-weight: 500;
  color: var(--text-light) !important;
  margin: 0 10px;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 30px;
}

/* Service Cards */
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: rgba(255, 90, 0, 0.2);
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Working Process */
.step-container {
  text-align: center;
  position: relative;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(0, 117, 255, 0.4);
  font-family: 'Outfit', sans-serif;
}

/* Forms */
.form-control, .form-select {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
}

.form-control:focus, .form-select:focus {
  background-color: #222;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 90, 0, 0.25);
  color: #fff;
}

.form-label {
  font-weight: 500;
  color: #ccc;
}

/* Page Headers */
.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid #1a1a1a;
}

footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

footer p, footer li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

footer li a:hover {
  color: var(--primary-color);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
}
