:root {
  --primary: #f39c12; /* Golden/Yellow */
  --primary-hover: #e67e22;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --text: #e0e0e0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--darker);
  color: var(--text);
  scroll-behavior: smooth;
}

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

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

.navbar-brand span {
  color: var(--primary);
}

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

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

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

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

.btn-custom {
  background-color: var(--primary);
  color: var(--darker);
  font-weight: 700;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--primary-hover);
  color: var(--darker);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

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

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: var(--darker);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.7)), url('assets/img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Section styling */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light);
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: var(--gray);
  margin-top: 25px;
}

/* Services */
.service-card {
  background-color: var(--dark);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(243, 156, 18, 0.3);
}

.service-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

.service-content p {
  color: #aaa;
  font-size: 0.95rem;
}

/* Features */
.features-section {
  background-color: var(--dark);
}

.feature-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  background-color: var(--darker);
  border: 1px solid rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.feature-box:hover {
  border-color: rgba(243, 156, 18, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  background-color: var(--primary);
  color: var(--darker);
}

.feature-box h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--light);
}

.feature-box p {
  color: #888;
  font-size: 0.9rem;
}

/* Contact */
.contact-section {
  position: relative;
}

.contact-info {
  background-color: var(--dark);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  color: var(--primary);
  font-size: 24px;
  margin-right: 20px;
}

.contact-info-text h5 {
  color: var(--light);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-info-text p {
  color: #aaa;
  margin: 0;
}

.form-control, .form-select {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  padding: 12px 15px;
}

.form-control:focus, .form-select:focus {
  background-color: rgba(255,255,255,0.05);
  border-color: var(--primary);
  color: var(--light);
  box-shadow: none;
}

.form-select option {
    background-color: var(--dark);
    color: var(--light);
}

/* Footer */
footer {
  background-color: var(--dark);
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light);
}

.footer-logo span {
  color: var(--primary);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  color: var(--light);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--darker);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

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