:root {
  --nav-color: #fafafa;
  --nav-hover-color: #f9fafa;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #fafafa;
  --nav-dropdown-hover-color: #f9fafa;
  --background-color: #000000;
  --default-color: #fafafa;
  --heading-color: #ffffff;
  --accent-color: #f9fafa;
  --surface-color: #1a1a1a;
  --contrast-color: #000000;
}

body {
  font-family: "Mandali", sans-serif;
  background-color: #040404;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  font-size: 1.2em;
}


section {
  width: 100%;
  opacity: 1;
  display: block;
  overflow-y: auto;
  position: relative;
}

a {
  color: #f9fafa;
  text-decoration: none;
}

a:hover {
  color: #f9fafa;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Marko One", serif;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  /*font-family: "Poppins", sans-serif;*/
  font-family: "Marko One", serif;
}

#header h1 a,
#header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #f9fafa;
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#header .social-links a:hover {
  background: hsl(148, 79%, 46%);
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 1.5em;
  }

  #header h2 {
    font-size: 16px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: 15px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.navbar {
  padding: 0;
  /* margin-top: 65px; Removed for Bootstrap spacing */
}

.mobile-nav {
  display: none;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #f9fafa;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffffff;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.services .icon-box {
  text-align: center;
  background: rgba(204, 204, 204, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #000000;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #f9fafa;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

@media (max-width: 768px) {
  .main-logo {
    width: 280px;
  }

  .main-tagline {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  top: 20px;
  right: 20px;
  z-index: 9999;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 0;
    transition: 0.3s;
    z-index: 9998;
    display: flex;
    flex-direction: column;
  }

  .navbar.active {
    right: 0;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-nav li {
    padding: 15px 30px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    width: 100%;
  }

  .mobile-nav a:hover {
    color: #f9fafa;
  }

  .navbar li+li {
    margin-left: 0;
  }
}

/* Main content should expand to fill available space */
.container {
  flex: 1;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

/* Maintenance Page Styles */
.maintenance-section {
  padding: 60px 0;
  min-height: 100vh;
}

.maintenance-section h1 {
  margin-bottom: 30px;
}

.maintenance-section h2 {
  margin: 50px 0 50px;
}

.maintenance-section ol {
  padding-left: 20px;
}

.maintenance-section li {
  margin-bottom: 20px;
}

.maintenance-section ul {
  margin-top: 10px;
}

.maintenance-section a {
  text-decoration: none;
}

.maintenance-section a:hover {
  text-decoration: underline;
}

/* Gallery placeholder styling */
.gallery-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  border: 2px dashed #f9fafa;
  margin: 40px 0;
  max-width: 500px;
  width: 100%;
}

.gallery-placeholder i {
  font-size: 4rem;
  color: #f9fafa;
  margin-bottom: 20px;
  opacity: 0.7;
}

.gallery-placeholder h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.gallery-placeholder p {
  color: #bdc3c7;
  font-size: 1rem;
  margin: 0;
}

/* Client Logos Styles (Moved from footer.php) */
.client-logos {
  margin: 40px auto;
  text-align: center;
  transition: opacity 0.3s ease;
}

.client-logos.hidden {
  display: none;
}

.client-logos h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

.client-logo {
  padding: 15px;
  display: inline-block;
  vertical-align: middle;
}

.client-logo img {
  height: 75px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .client-logo img {
    height: 50px;
  }

  .client-logos h3 {
    font-size: 1.2rem;
    padding: 0 15px;
  }
}

/* Contact Section Styles */
.contact {
  padding: 80px 0;
}

.contact .form-group {
  margin-bottom: 30px;
}

.contact label {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaaaaa;
  margin-bottom: 10px;
  display: block;
}

.contact .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
  padding: 10px 0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .form-control:focus {
  background: transparent;
  border-bottom-color: #f9fafa;
  box-shadow: none;
  color: #fff;
}

.contact textarea.form-control {
  height: auto;
  min-height: 100px;
}

.contact .btn-primary {
  background: transparent;
  border: 2px solid #f9fafa;
  color: #fff;
  border-radius: 30px;
  padding: 10px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.contact .btn-primary:hover {
  background: #f9fafa;
  color: #fff;
}

.contact-info {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.contact-info p {
  font-size: 1em;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}

.contact-info a {
  color: #f9fafa;
  transition: 0.3s;
}

.contact-info a:hover {
  color: #fff;
}

/* Custom file input styling */
.contact .form-control-file {
  color: #aaaaaa;
  font-size: 14px;
  padding-top: 10px;
}

/* Welcome Image Styling */
.welcome-img-wrap {
  max-width: 100%;
}

.welcome-img {
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
}