/* Global Styles & Variables */
:root {
  --bg-dark: #0B0A09;
  --bg-card: #151413;
  --accent-gold: #E0AE2E;
  --text-light: #ffffff;
  --text-muted: #d3d3d3; /* Light grey for paragraphs */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
}

.text-gold {
  color: var(--accent-gold) !important;
}

/* Navbar */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold) !important;
  font-size: 1.5rem;
}

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

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

/* Buttons */
.btn-gold {
  background-color: var(--accent-gold);
  color: #0B0A09;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: #f1bf40;
  color: #0B0A09;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 174, 46, 0.3);
}

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

.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #0B0A09;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(11,10,9,1) 0%, rgba(30,28,26,1) 100%);
  padding: 100px 0;
}

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

/* Cards & Services */
.service-card {
  background-color: var(--bg-card);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(224, 174, 46, 0.2);
}

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

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  margin-bottom: 10px;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

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

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

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

.social-links a:hover {
  background-color: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--accent-gold);
  margin-right: 15px;
  margin-top: 4px;
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  color: #fff;
}

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

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

label {
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 120px 0 60px;
    text-align: center !important;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .navbar-collapse {
    background-color: #151413;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(224, 174, 46, 0.1);
  }

  .nav-item {
    text-align: left;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    padding-top: 10px;
  }
  
  .nav-item:last-child {
    border-bottom: none;
  }
  
  .nav-link {
    padding-left: 0 !important;
  }
  
  .btn-gold.ms-lg-4 {
    display: block;
    width: 100%;
    margin-top: 15px !important;
  }
}
