:root {
  --primary-gold: #ffc979;
  --dark-bg: #161616;
  --secondary-bg: #2c2c2c;
}

body {
  background-color: var(--dark-bg);
  color: #fff;
  overflow-x: hidden;
}
.hero-section {
  background-color: #161616; /* Darkest grey - original dark background */
}

.why-choose-us {
  background-color: #2c2c2c; /* Secondary dark grey */
}

.services {
  background-color: #161616; /* Back to darkest grey */
}

.discover {
  background-color: #2c2c2c; /* Secondary dark grey again */
}

.portfolio {
  background-color: #161616; /* Darkest grey */
}

.contact {
  background-color: #2c2c2c; /* Secondary dark grey */
}

.navbar {
  background-color: var(--dark-bg) !important;
  padding: 1rem;
}

.navbar-brand img {
  width: 60px;
  height: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 45px;
  }
}

.nav-link {
  color: #9b9d9e;
  transition: color 0.3s;
  margin: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--primary-gold);
}

.dropdown-menu {
  background-color: var(--dark-bg);
  border: 1px solid var(--secondary-bg);
}

.dropdown-item {
  color: #9b9d9e;
}

.dropdown-item:hover {
  background-color: var(--secondary-bg);
  color: var(--primary-gold);
}

.hero-section {
  padding: 4rem 2rem;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .hero-image {
    margin-top: 2rem;
    max-width: 80%;
    margin: 2rem auto;
  }
}

.btn-primary {
  background-color: var(--primary-gold);
  border: none;
  color: #000;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #fadcaf;
  color: #000;
}

.btn-secondary {
  background-color: var(--secondary-bg);
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
}

.service-card {
  background-color: var(--secondary-bg);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 70px;
  height: auto;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .feature-icon {
    width: 50px;
  }
}

.text-gold {
  color: var(--primary-gold);
}

.discover-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.discover-side {
  height: calc(50% - 1rem);
  overflow: hidden;
}

.discover-side img {
  height: 100%;
  object-fit: cover;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .discover-content {
    bottom: 1rem;
    left: 1rem;
  }

  .discover-content h3 {
    font-size: 1.5rem;
  }

  .filter-buttons .btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

.contact-form {
  background-color: var(--secondary-bg);
  padding: 2rem;
  border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #a8a8a8;
  border-radius: 0;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background-color: transparent;
  color: #fff;
  box-shadow: none;
  border-bottom: 2px solid var(--primary-gold);
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-whatsapp img {
  width: 50px;
  transition: transform 0.3s;
}

.floating-whatsapp img:hover {
  transform: scale(1.1);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

.footer {
  background-color: #494948;
}

.footer-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.copyright {
  color: #fff;
}

@media (max-width: 768px) {
  .footer .row {
    text-align: center;
  }

  .social-icons,
  .contact-icons {
    justify-content: center;
    margin: 1rem 0;
  }

  .footer-icon {
    width: 32px;
    height: 32px;
  }
}

/* Ensure all footer links have proper hover states */
.social-link,
.contact-link {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.social-link:hover,
.contact-link:hover {
  opacity: 0.8;
}
