i /* VSV Constructions Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --yellow: #f7c948;
  --dark: #2e2e2e;
  --white: #fff;
  --gray: #f5f5f5;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--dark);
  background: var(--gray);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  position: relative;
}
.logo-icon {
  font-size: 2.1rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  margin-right: 0.2rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
}
.logo-tagline {
  display: block;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--yellow);
  color: var(--white);
}
.btn-quote {
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 600;
  border-radius: 24px;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
}
.btn-quote:hover {
  background: var(--dark);
  color: var(--yellow) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav-toggle:focus {
  background: var(--yellow);
  outline: none;
}
.bar {
  width: 100%;
  height: 4px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .nav-menu {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition);
  }
  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .logo-text {
    font-size: 1.1rem;
  }
  .logo-tagline {
    display: none;
  }
}

/* Footer Styles */
.site-footer {
  background: #1e1e1e;
  color: #fff;
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-about, .footer-links, .footer-contact {
  flex: 1 1 220px;
}
.footer-about h3 {
  color: #f7c948;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.footer-about p {
  color: #eee;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.footer-links h4, .footer-contact h4 {
  color: #f7c948;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.02rem;
}
.footer-links a:hover {
  color: #f7c948;
}
.footer-contact ul li {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}
.footer-contact span {
  color: #f7c948;
  font-weight: 600;
  margin-right: 0.3rem;
}
.footer-social {
  margin-top: 1rem;
}
.footer-social a {
  color: #f7c948;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.2s;
  display: inline-block;
}
.footer-social a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #bbb;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 0.7rem 2rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
  cursor: pointer;
}
.btn:hover {
  background: var(--dark);
  color: var(--yellow);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.text-center {
  text-align: center;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 0.5rem;
  }
}

/* Scroll Animations (AOS) */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos="fade-in"] {
  transform: none;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
}
[data-aos="fade-in"].aos-animate {
  opacity: 1;
}
[data-aos-delay="100"] {
  transition-delay: 0.1s;
}
[data-aos-delay="200"] {
  transition-delay: 0.2s;
}
[data-aos-delay="350"] {
  transition-delay: 0.35s;
}

/* Hero Section Styles (Reverted) */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5rem;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(30,30,30,0.88) 70%, rgba(247,201,72,0.18) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(30,30,30,0.78);
  color: #fff;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
  border-radius: 20px;
  max-width: 540px;
  margin: 3rem 0;
  box-shadow: 0 8px 32px rgba(30,30,30,0.12);
  text-align: center;
}
.hero-icon {
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: 1px;
}
.hero-accent {
  color: #f7c948;
  background: #1e1e1e;
  padding: 0.1em 0.5em;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(247,201,72,0.12);
  display: inline-block;
  margin: 0 0.2em;
}
.hero-sub {
  font-size: 1.18rem;
  color: #eeeeee;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
.btn-hero {
  background: #f7c948;
  color: #1e1e1e !important;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: none;
  outline: none;
}
.btn-hero:hover {
  background: #1e1e1e;
  color: #f7c948 !important;
  box-shadow: 0 6px 24px rgba(30,30,30,0.18);
}
@media (max-width: 900px) {
  .hero-content {
    padding: 2rem 1.2rem;
    max-width: 98vw;
  }
  .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 1.2rem 0.5rem;
    margin: 1.5rem 0;
  }
  .hero-title {
    font-size: 1.1rem;
  }
  .hero-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Colorful Services Section Enhancements */
.services-section {
  background: linear-gradient(120deg, #f7c948 0%, #ffe29f 100%);
  position: relative;
  z-index: 1;
}
.services-section .section-title {
  color: #222;
  text-shadow: 0 2px 8px rgba(247,201,72,0.10);
}
.services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: linear-gradient(135deg, #fffbe6 60%, #ffe29f 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(247,201,72,0.18), 0 2px 8px rgba(30,30,30,0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, background 0.35s;
  position: relative;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 280px;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(60px);
}
.service-card.animated {
  animation: serviceCardIn 1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes serviceCardIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.95); }
  80% { opacity: 1; transform: translateY(-8px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.service-card:hover {
  background: linear-gradient(135deg, #ffe29f 60%, #f7c948 100%);
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(247,201,72,0.22), 0 4px 16px rgba(30,30,30,0.10);
}
.service-icon {
  font-size: 3.2rem;
  color: #fff;
  background: linear-gradient(135deg, #f7c948 60%, #ffb347 100%);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  border: 3px solid #fffbe6;
}
.service-card h3 {
  color: #f7c948;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.7rem 0 0.8rem 0;
  letter-spacing: 0.5px;
}
.service-card p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .services-grid { flex-direction: column; align-items: center; }
  .service-card { min-width: 220px; max-width: 100%; }
}

/* Featured Projects Section - Professional Enhancements */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.project-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,30,30,0.08);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.project-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(30,30,30,0.92) 80%, rgba(30,30,30,0.0) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(247,201,72,0.16);
}
.project-card:hover img {
  transform: scale(1.05);
}
.project-card:hover .project-overlay {
  opacity: 1;
  transform: translateY(0);
}
.project-overlay h3 {
  margin: 0 0 0.3rem 0;
  color: #f7c948;
  font-size: 1.18rem;
  font-weight: 700;
}
.project-overlay p {
  margin: 0;
  font-size: 0.98rem;
  color: #eee;
}
.btn-projects {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  border-radius: 24px;
  padding: 0.7rem 2.2rem;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(247,201,72,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  display: inline-block;
}
.btn-projects:hover,
.btn-projects:focus {
  background: var(--dark);
  color: var(--yellow);
}
@media (max-width: 900px) {
  .projects-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .project-card {
    max-width: 100%;
  }
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 300px;
  position: relative;
}
.testimonial-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--yellow);
}
.testimonial-info h3 {
  margin: 0.5rem 0 0.3rem 0;
  color: var(--yellow);
}
.stars {
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
  background: var(--yellow);
  color: var(--dark);
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.mvv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.mvv-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
}
.mvv-item ul {
  padding-left: 1.2rem;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.timeline-item {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  position: relative;
}
.timeline-year {
  font-weight: 700;
  color: var(--yellow);
  margin-right: 1rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.team-member {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 1.5rem 1rem;
  text-align: center;
  flex: 1 1 220px;
  max-width: 220px;
}
.team-member img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--yellow);
}

/* Contact Page */
.contact-main .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.contact-form, .contact-info {
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  padding: 1.25rem;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 0.75rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  border: 1px solid #666;
  outline: none;
  box-shadow: none;
}
.contact-form .btn {
  margin-top: 0.25rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  background: var(--dark);
  color: var(--white);
  transition: opacity 0.2s ease;
}
.contact-form .btn:hover {
  opacity: 0.9;
  background: var(--dark);
  color: var(--white);
}
.contact-form .btn i {
  margin-right: 0.4rem;
  font-size: 0.85rem;
}
.error-message {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.contact-info li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}
.contact-info i {
  color: var(--yellow);
  margin-right: 0.5rem;
}
.contact-social a {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color var(--transition);
}
.contact-social a:hover {
  color: var(--dark);
}
.contact-map {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

/* CTA Section */
.cta-section {
  background: var(--yellow);
  color: var(--dark);
  padding: 2.5rem 0;
  margin: 3rem 0 0 0;
  border-radius: 12px;
}

/* CTA Card Enhancements */
.cta-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(46,46,46,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 520px;
  margin: 0 auto;
  border-left: 6px solid var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.cta-icon {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-sub {
  color: #555;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
  font-weight: 500;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.08rem;
  font-weight: 600;
  background: var(--dark);
  color: var(--yellow) !important;
  border-radius: 24px;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 2px 12px rgba(46,46,46,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
}
.btn-cta:hover, .btn-cta:focus {
  background: var(--yellow);
  color: var(--dark) !important;
  box-shadow: 0 4px 18px rgba(247,201,72,0.18);
  outline: none;
}
@media (max-width: 600px) {
  .cta-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .cta-icon svg {
    width: 38px;
    height: 38px;
  }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .services-grid, .projects-grid, .gallery-grid, .testimonials-grid, .team-grid, .mvv-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .service-card, .project-card, .gallery-item, .testimonial-card, .team-member, .mvv-item, .contact-form, .contact-info {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-form {
    max-width: 100%;
    padding: 1rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .contact-main .container {
    gap: 1rem;
    margin: 1rem 0;
  }
  .contact-form {
    padding: 0.75rem;
  }
  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .form-group input, .form-group textarea {
    padding: 0.5rem 0.7rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .cta-section {
    padding: 1.2rem 0.5rem;
  }
}

/* Header: Professional Enhancements */
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(46,46,46,0.10);
  background: var(--white);
  transition: box-shadow 0.3s;
}
.nav-menu li a:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 0 0 8px 8px;
  transition: left 0.2s;
}
.skip-link:focus {
  left: 1rem;
  width: auto;
  height: auto;
  outline: 2px solid var(--dark);
}

/* Navbar: Professional Enhancements */
.nav-menu {
  gap: 2rem;
}
.nav-link {
  position: relative;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
  border-radius: 4px;
  outline: none;
}
.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover,
.nav-link:focus {
  color: var(--yellow);
  background: rgba(247,201,72,0.08);
}
.nav-link:hover::after,
.nav-link:focus::after {
  transform: scaleX(1);
}
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
}
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Mobile Slide-in Menu */
@media (max-width: 768px) {
  .nav-menu {
    right: 0;
    top: 100%;
    width: 240px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    border-radius: 0 0 12px 12px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem 1rem 1.5rem;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.2s;
  }
  .nav-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    width: 100%;
    padding: 0.7rem 0.5rem;
    font-size: 1.1rem;
  }
}

/* Projects Hero Section */
.projects-hero {
  background: linear-gradient(90deg, #fff 60%, #f7c94818 100%);
  padding: 3.5rem 0 2.2rem 0;
  margin-bottom: 0.5rem;
}
.projects-hero-icon {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-hero-sub {
  color: #555;
  font-size: 1.13rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Filter Bar */
.filter-bar {
  display: inline-flex;
  gap: 0.7rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(46,46,46,0.06);
  padding: 0.5rem 1.2rem;
  margin: 1.2rem 0 2.2rem 0;
}
.filter-btn {
  border-radius: 24px;
  background: none;
  color: var(--dark);
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.3rem;
  font-size: 1.02rem;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:focus {
  background: var(--yellow);
  color: var(--dark);
  outline: none;
}
.filter-btn:hover {
  background: #f7c94833;
}

/* Gallery Enhancements */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(30,30,30,0.08);
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(30,30,30,0.92) 80%, rgba(30,30,30,0.0) 100%);
  color: #fff;
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s, transform 0.3s;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 2;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(247,201,72,0.16);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.gallery-overlay h3 {
  margin: 0 0 0.3rem 0;
  color: #f7c948;
  font-size: 1.18rem;
  font-weight: 700;
}
.gallery-overlay p {
  margin: 0;
  font-size: 0.98rem;
  color: #eee;
}
.badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25em 0.9em;
  border-radius: 12px;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 1px 4px rgba(46,46,46,0.08);
  letter-spacing: 0.5px;
}
.badge-residential { background: #f7c948; color: #2e2e2e; }
.badge-commercial { background: #2e2e2e; color: #fff; }
.badge-interior { background: #fff; color: #2e2e2e; border: 1px solid #f7c948; }
.badge-exterior { background: #f7c94833; color: #2e2e2e; }

.no-projects-message {
  text-align: center;
  color: #b00;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 2.5rem 0 1.5rem 0;
  display: none;
}

@media (max-width: 900px) {
  .gallery-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .gallery-item {
    max-width: 100%;
  }
  .filter-bar {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .projects-hero {
    padding: 2rem 0 1.2rem 0;
  }
  .gallery-item img {
    height: 120px;
  }
  .gallery-item {
    min-width: 0;
  }
}

/* Footer In/Out Animations */
@keyframes footerFadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes footerFadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}
.footer-animate-in {
  animation: footerFadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.footer-animate-out {
  animation: footerFadeOutDown 0.7s cubic-bezier(.4,0,.2,1) forwards;
}

/* --- Our Services Section In/Out Animations --- */
@keyframes servicesFadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes servicesFadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(60px); }
}
.services-animate-in {
  animation: servicesFadeInUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
.services-animate-out {
  animation: servicesFadeOutDown 0.7s cubic-bezier(.4,0,.2,1) forwards;
} 