* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #c8b89a;
}

/*Navigation*/
/*Navigation*/
#nav-bar {
  position: relative;
}

#nav-bar nav {
  padding: 0.5em 5%;
  background: black;
  border-bottom: 1px solid black;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  margin-right: auto;
}

.logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin-right: 30px;
}

.nav-links li a {
  position: relative;
  font-size: 1.05em;
  font-weight: 500;
  text-decoration: none;
  color: darkgray;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

/* Burger button */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
  line-height: 0;
}

.menu-toggle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

/* Mobile dropdown */
.mobile-menu {
  background: black;
  position: absolute;
  top: 100%;
  right: 0;
  width: 50%;
  box-sizing: border-box;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 500px;
  border-top: 1px solid #1a1a1a;
}

.mobile-menu ul {
  list-style: none;
  padding: 1.5em 5% 0 5%;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

.mobile-menu ul li {
  border-bottom: 1px solid #1a1a1a;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.85em 0;
  font-size: 1.05em;
  font-weight: 500;
  color: darkgray;
  text-decoration: none;
  transition: color 0.3s;
  text-align:right;
}

.mobile-menu ul li a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}

.mobile-menu .btn {
  display: inline-block;
  margin: 1.5em 5%;
  float: right;
}

@media (min-width: 769px) {
  .mobile-menu {
    width: 25%;
  }
}

/* Responsive breakpoint */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .desktop-contact {
    display: none;
  }
  /*.menu-toggle {
    display: block;
  }*/
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1em 2.5em;
  border-radius: 0px;
  font-weight: 900;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: black;
  color: #ffffff;
  border: 1px solid gray;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 1em 1.5em;
  font-size: 0.8em;
  letter-spacing: 0.05em;
}




/* Hero Header */
/* Intro Section */
/* Unified Intro Section */
/* Unified Intro Section */
.services-intro {
  padding: 80px 5% 60px 5%;
  display: flex;          
  justify-content: center; 
}

.intro-content {
  width: 100%;
  max-width: 600px;
  display: flex;           
  flex-direction: column;  
}

/* Main page title centered at the very top */
.page-main-title {
  text-align: center;
  font-size: 3em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8b89a;
  margin-bottom: 40px; 
}

/* Intro header text centered */
.intro-content h2 {
  text-align: center;
  font-size: 1.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Intro description centered */
.intro-content p {
  text-align: center;
  font-size: 1.5em;
  color: white;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Divider centered under the paragraph */
.divider {
  border: none;
  border-top: 1px solid #333;
  margin: 0 auto 40px auto; /* Centers the horizontal line */
  width: 400px;            
}

/* Left-aligned, larger, crisp white title */
.every-project {
  text-align: center; /* Forces alignment to the left side */
  font-size: 1.4em; /* Increased size to make it a distinct heading */
  color: #ffffff;   /* Crisp premium white */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px; /* Space for the items you'll add below it */
}

/* Service Categories */
.services-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 5% 80px 5%;
  border-top: 1px solid #1a1a1a;
  cursor:default;
}

.category h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c8b89a;
}

.category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category ul li {
  font-size: 1.3em;
  color: white;
  padding-left: 14px;
  border-left: 2px solid #333;
  line-height: 1.5;
  transition: color 0.3s, border-color 0.3s;
}

.category ul li:hover {
  color: #c8b89a;
  border-left-color: #c8b89a;
}

/* Responsive */
@media (max-width: 768px) {
  .services-categories {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-hero h1 {
    font-size: 2em;
  }
}

/*FOOTER*/

#footer {
  background-color: #141414;
  color: #e2e8f0;
  font-family: inherit;
  padding: 3rem 2rem 1.5rem;
  
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 0.5px solid #2d3748;
  padding-top: 2rem;
}

/* ── Grid ── */
.footer-top {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ── Column label ── */
.footer-col-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8b89a;
  margin: 0 0 1rem;
}

/* ── Brand ── */
.footer-logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 13px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* ── Nav ── */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ── Contact ── */
#footer address {
  font-style: normal;
}



.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.4);
}

.footer-contact-item span {
  font-size: 16px;
  color: #a0aec0;
  line-height: 1.5;
  text-align: left;
}

#footer .contact-item:last-child {
  margin-bottom: 0;
}


.footer-contact-item a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}



/* ── Socials ── */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.6);
  transition: filter 0.2s ease;
}

.social-link:hover img {
  filter: brightness(0) invert(1);
}



.social-link:hover {
  color: #ffffff;
}

.social-link i {
  font-size: 17px;
}

/* ── Divider ── */
.footer-divider {
  border: none;
  border-top:0.5px solid #2d3748;
  margin: 0 0 1.25rem;
}

/* ── Bottom ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 0.5px solid #2d3748;
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-bottom p {
  font-size: 12px;
  color: #4a5568;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  #footer {
    padding: 2rem 1.25rem 1.25rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}