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

:root {
  --primary-gold: #D4AF37;
  --primary-gold-hover: #b5952f;
  --dark-bg: #111111;
  --darker-bg: #0a0a0a;
  --light-text: #F8F9FA;
  --muted-text: #A0A0A0;
  --card-bg: #1a1a1a;
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(212, 175, 55, 0.2);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Typography Utilities */
.text-gold {
  color: var(--primary-gold) !important;
}

.heading-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  margin-bottom: 15px;
  display: block;
}

/* Buttons */
.btn-gold {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1px solid var(--primary-gold);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--primary-gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  border: 1px solid var(--primary-gold);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-outline-gold:hover {
  background-color: var(--primary-gold);
  color: var(--dark-bg);
}

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

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

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

.nav-link {
  color: var(--light-text) !important;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.navbar-toggler {
  border-color: var(--primary-gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

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

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

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

.bg-darker {
  background-color: var(--darker-bg);
}

/* About Section */
.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-gold);
  border-radius: 8px;
  transform: translate(15px, 15px);
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-box {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: var(--font-heading);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-img-container {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.service-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  background: var(--card-bg);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Projects Section */
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 30px;
}

.project-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-title {
  font-size: 1.5rem;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.project-category {
  color: var(--primary-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  transition-delay: 0.1s;
}

.project-card:hover .project-title,
.project-card:hover .project-category {
  transform: translateY(0);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.9)), url('./assets/images/service_grid.png') center/cover no-repeat fixed;
  color: var(--dark-bg);
  text-align: center;
  padding: 100px 0;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-info-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h5 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

.contact-text a:hover {
  color: var(--primary-gold);
}

/* Form Styles */
.custom-form .form-control {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-text);
  padding: 15px 20px;
  border-radius: 4px;
}

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

.custom-form .form-control::placeholder {
  color: rgba(255,255,255,0.3);
}

/* Footer */
.footer {
  background-color: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}

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

.footer p {
  color: var(--muted-text);
}

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

.social-links a:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  margin-top: 40px;
  color: var(--muted-text);
  font-size: 0.9rem;
}

/* Responsive Utilities */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .stat-box {
    margin-bottom: 20px;
  }
}
