
.services-section {
    padding: 3rem 2rem;
    background: #f6e9b3;
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(191,161,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.2s;
    border: 1.5px solid #ffe082;
  }

  .service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 24px rgba(191,161,0,0.18);
  }

  .service-card img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    background: #fffbe9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(191,161,0,0.10);
  }

  .service-card h2 {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #3E2723;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #7c6500;
  }

  /* Gallery Modal Styles */
  .gallery-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 235, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-modal-content {
    background: #fffbe9;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 2px 16px rgba(191,161,0,0.10);
  }
  .gallery-close {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 2rem;
    color: #A1887F;
    cursor: pointer;
  }
  .gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
  }
  .gallery-images img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(191,161,0,0.15);
    object-fit: cover;
    background: #fffde7;
  }

  /* Sticky WhatsApp Button */
  .whatsapp-sticky {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    background: #ffe082;
    color: #A1887F;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    font-size: 2.2rem;
    transition: background 0.2s;
  }
  .whatsapp-sticky:hover {
    background: #A1887F;
    color: #fff;
    text-decoration: none;
  }

  /* Modern CSS Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6e9b3;
    color: #3E2723;
    line-height: 1.7;
  }

  /* Navigation Bar */
  nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.7rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
  }
  .site-logo {
    height: 48px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-right: 0.5rem;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-links li a {
    color: #000;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s;
  }
  .nav-links li a.active,
  .nav-links li a:hover {
    color: #bfa100;
  }

  /* Hero Section */
  .hero {
    background: #fff3c5;
    padding: 4rem 2rem 3rem 2rem;
    text-align: center;
    box-shadow: 0 2px 16px rgba(191,161,0,0.08);
    border-radius: 0 0 32px 32px;
  }
  .hero-text {
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    border: none;
    min-width: unset;
    max-width: unset;
    display: block;
    position: static;
    z-index: auto;
  }
  .hero-text h1 {
    font-size: 2.7rem;
    color: #3E2723;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #a7a1a1, 0 1px 0 #ffe082;
    font-weight: 800;
  }
  .hero-text p {
    font-size: 1.25rem;
    color: #7c6500;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 0 #fffbe9;
  }
  .btn, .contact-form .btn {
    display: inline-block;
    background: linear-gradient(90deg, #ba2d2d 60%, #f5f2eb 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(191,161,0,0.10);
    cursor: pointer;
    border: none;
  }
  .btn:hover, .contact-form .btn:hover {
    background: linear-gradient(90deg, #100f0f 60%, #605e5e 100%);
    box-shadow: 0 4px 16px rgba(191,161,0,0.18);
  }

  /* Blog Section */
  .blog-section {
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
  }
  .blog-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .blog-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(191,161,0,0.06);
    padding: 2rem;
  }
  .blog-post h2 {
    color: #3E2723;
    margin-bottom: 0.5rem;
  }
  .blog-meta {
    color: #bfa100;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    background: #221f1f;
    color: #ffffff;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-top: 2px solid #ffe082;
  }

  footer a {
    color: #ffffff;
  }

  /* General Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    color: #3E2723;
  }
  a {
    color: #bfa100;
    text-decoration: none;
  }
  a:hover {
    color: #7c6500;
    text-decoration: underline;
  }
  section {
    margin-bottom: 2rem;
  }

  /* Service Gallery Grid for Dedicated Service Pages */
  .service-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
  }
  .service-gallery-grid img {
    max-width: 300px;
    max-height: 220px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(191,161,0,0.12);
    object-fit: cover;
    background: #ffffff;
  }
  .service-detail-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  /* Contact Form Styles */
  .contact-section {
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .contact-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(191,161,0,0.08);
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .contact-form label {
    font-weight: 500;
    color: #bfa100;
    margin-bottom: 0.2rem;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid #ffe082;
    border-radius: 6px;
    font-size: 1rem;
    background: #fcfcfc;
    transition: border 0.2s;
    resize: none;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    border: 1.5px solid #bfa100;
    outline: none;
    background: #fff;
  }
  .contact-form .btn {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.9rem 0;
  }
  .contact-info {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    box-shadow: 0 1px 6px rgba(191,161,0,0.04);
    text-align: left;
  }
  .contact-info h2 {
    color: #3E2723;
    margin-bottom: 0.7rem;
  }
  .contact-info p {
    margin-bottom: 0.3rem;
    color: #7c6500;
    font-size: 1.05rem;
  }

  /* --- Yellow/Gold Premium Enhancements --- */

  .about-hero {
    background: #ffffff;
    padding: 3rem 0 2rem 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  }
  .about-hero-content h1 {
    font-size: 2.5rem;
    color: #3E2723;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
  }
  .about-tagline {
    color: #bfa100;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .about-section.enhanced {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    margin: 2rem auto 2rem auto;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 1100px;
  }

  .about-columns {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .about-main {
    flex: 2;
    min-width: 260px;
  }
  .about-sidebar {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .about-highlight {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(191,161,0,0.07);
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
  }
  .about-highlight h3 {
    color: #3E2723;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
  }
  .about-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .about-highlight li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    padding-left: 1.2em;
    position: relative;
  }
  .about-highlight li:before {
    content: '✔';
    color: #bfa100;
    position: absolute;
    left: 0;
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-top: 1rem;
  }

  .about-section h2 {
    border-left: 4px solid #bfa100;
    padding-left: 0.7rem;
    margin-bottom: 1rem;
    color: #3E2723;
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .about-section ul {
    margin-bottom: 1.2rem;
    margin-left: 1.2rem;
  }
  .about-section li {
    margin-bottom: 0.5rem;
  }
  .about-quote {
    font-size: 1.1rem;
    color: #bfa100;
    margin: 1.5rem 0;
    border-left: 4px solid #bfa100;
    padding-left: 1rem;
    background: #fffde7;
    border-radius: 6px;
    font-style: italic;
  }

  /* Responsive Layout */
  @media (max-width: 900px) {
    .about-columns {
      flex-direction: column;
      gap: 1.5rem;
    }
    .about-section.enhanced {
      padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
  }

  /* Buttons and Cards */
  .btn, .contact-form .btn {
    background: linear-gradient(90deg, #bfa100 60%, #ffe082 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(191,161,0,0.10);
    cursor: pointer;
  }
  .btn:hover, .contact-form .btn:hover {
    background: linear-gradient(90deg, #7c6500 60%, #bfa100 100%);
    box-shadow: 0 4px 16px rgba(191,161,0,0.18);
  }

  /* Subtle Card Hover */
  .service-card, .about-highlight {
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .service-card:hover, .about-highlight:hover {
    box-shadow: 0 4px 24px rgba(191,161,0,0.18);
    transform: translateY(-4px) scale(1.02);
  }
/* ------------------------------
   Footer (Enhanced)
--------------------------------*/
footer {
  background: #0c0c0c; /* Slightly softer black */
  color: #e6e6e6;
  padding: 3rem 1.5rem 1.2rem 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h3 {
  color: #ffe082;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #dcdcdc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-column ul li a:hover {
  color: #ffe082;
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  background: #1a1a1a;
  color: #ffe082;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #ffe082;
  color: #0c0c0c;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}

.footer-bottom span {
  color: #ffe082;
  font-weight: 500;
}

  html {
    scroll-behavior: smooth;
  }

  /* Highlight effect for service sections on portfolio page */
  section:target {
    animation: section-highlight 1.2s ease;
    box-shadow: 0 0 0 4px #ffe082, 0 2px 16px rgba(191,161,0,0.12);
    border-radius: 14px;
  }
  @keyframes section-highlight {
    0% { box-shadow: 0 0 0 0 #ffe082; }
    40% { box-shadow: 0 0 0 8px #ffe082; }
    100% { box-shadow: 0 0 0 4px #ffe082, 0 2px 16px rgba(191,161,0,0.12); }
  }

  /* Portfolio Section Enhancements */
  #portfolio-main {
    background: #fffbe9;
    padding: 2.5rem 0 1.5rem 0;
  }
  .portfolio-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(191,161,0,0.10);
    margin: 2.5rem auto;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 950px;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .portfolio-section:hover {
    box-shadow: 0 6px 32px rgba(191,161,0,0.16);
    transform: translateY(-4px) scale(1.01);
  }
  .portfolio-section h2 {
    color: #3E2723;
    border-left: 4px solid #ffe082;
    padding-left: 0.7rem;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
  }
  .portfolio-section .service-gallery-grid {
    gap: 2rem;
  }
  .portfolio-section .service-gallery-grid img {
    max-width: 320px;
    max-height: 220px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(191,161,0,0.10);
    background: #fffbe9;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .portfolio-section .service-gallery-grid img:hover {
    box-shadow: 0 6px 32px rgba(191,161,0,0.18);
    transform: scale(1.04);
  }

  @media (max-width: 600px) {
    .hero-text {
      padding: 0;
      min-width: unset;
      max-width: unset;
    }
    .hero {
      padding: 2rem 0.2rem 1.5rem 0.2rem;
      border-radius: 0 0 18px 18px;
    }
  }

  /* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #fff;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
  