*{
    background: white;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

#navbar__logo {
    height: 80px;
     cursor: pointer;
}


.navbar{
    background-color: white;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: #C89B3C;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 2rem;
    height: 100%;
    font-weight: 600;
}

.navbar__links:hover{
    color: #8b1015;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        height: 50vh;
        z-index: -1;
    }
    .navbar__menu.active{
        background: white;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease-in-out;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }
    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #C89B3C;
    }
    .navbar__item{
        width: 100%;
    }
    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }
    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }
    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}

hero
.main{
    background-color: white;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: black;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: white;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h1{
    margin-top: 1rem;
    color: #8b1015;
    font-size: clamp(2rem, 5vw, 3rem);
}

.main__content h2{
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #C89B3C;
}

.main__content p{
    font-size: 1rem;
    color: black;
    margin-top: 1rem;
    font-weight: 600;
}

.main__img__container{
    text-align: center;
}

#main__img{
    height: 80%;
    width: 80%;
}

.main__btn{
    font-size: 1rem;
    background-image: linear-gradient(to top, #8b1015 0%, #8B1015 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: black;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.4s;
    outline: none;
    text-decoration: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
    -webkit-background-clip: text;
    -moz-background-clip: text;
}

.main__btn::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #C89B3C;
    transition: all 0.4s;
    border-radius: 4px;
}

.main__btn:hover{
    color: #C89B3C;
}

.main__btn:hover:after{
    width: 100%;
}

.main__img__container{
    text-align: center;
}

#main__img{
    height: 70%;
    width: 70%;
}

@media screen and (max-width: 768px){
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }

    .main__content{
        text-align: center;
        margin-top: 3rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 2rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1rem;
    }
    .main__btn{
    padding: 12px 36px;
    margin: 1.5rem 0;
    }
    #main__img{
    height: 70%;
    width: 70%;
}
}

@media screen and (max-width: 480px) {
    .main__content h1{
        font-size: 2rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 1.5rem;
    }

    .main__content p{
        margin-top: 2rem;
        font-size: 1rem;
    }
}

@media screen and (min-width: 1200px) {
  .main__container {
    max-width: 1100px;
  }
}

.footer{
    background: white;
    color: black;
    padding: 70px 10% 30px;
    border-top: 3px solid #C89B3C;
    width: 100%;
    margin: 60px auto 40px auto;
}

.footer__logo h2{
    font-size: 32px;
    color: #C89B3C;
    margin-bottom: 8px;
    text-align: center;
}

.footer__logo p{
    color: #8B1015;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.footer__links{
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.footer__links a{
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: 0.3s ease-in;
}

.footer__links a:hover{
    color: #C89B3C;
}

.footer__contact{
    margin-bottom: 35px;
}

.footer__contact h2{
    font-size: 20px;
    color: #8B1015;
    text-align: center;
}

.footer__contact p{
    margin: 10px 0;
    font-size: 16px;
    color: black;
    text-align: center;
    font-weight: 500;
}

.footer__bottom hr{
    width: 90%;
    margin: 30px auto;
    border: none;
    border-top: 2px solid #8B1015;
}

.footer__bottom p{
    color: black;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width: 960px){
    .footer{
        padding: 50px 20px;
    }
    .footer__links{
        gap: 18px;
    }
    .footer__logo h2{
        font-size: 26px;
    }
}

.services-preview {
  padding: 60px 10%;
  background: white;
  text-align: center;
}

.services-preview h2 {
  font-size: 2rem;
  color: #8B1015;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.services-preview h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C89B3C;
  margin: 12px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border: 2px solid #C89B3C;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: #8B1015;
}

.service-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #8B1015;
  margin: 15px 0 10px;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  padding: 0 15px 20px;
}

.about-section {
  padding: 80px 10%;
  background: white;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    color: #8B1015;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C89B3C;
  margin: 12px auto 0;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }
}

.why-choose-us {
  padding: 80px 10%;
  background: white;
  text-align: center;
}

.why-container h2 {
  font-size: 2rem;
  color: #8B1015;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.why-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C89B3C;
  margin: 12px auto 0;
}

.intro-text {
  font-size: 1.1rem;
  color: #333;
  max-width: 700px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.why-card {
  background: white;
  border: 2px solid #C89B3C;
  border-radius: 10px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: #8B1015;
}

.icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
  color: #C89B3C;
}

.why-card h3 {
  color: #8B1015;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 1rem;
  color: #333;
}

.services-hero {
  padding: 80px 10%;
  text-align: center;
  background: linear-gradient(to right, #fff, #fff);
}

.services-hero h1 {
  font-size: 2.5rem;
  color: #8B1015;
  margin-bottom: 20px;
}

.services-hero p {
  font-size: 1.2rem;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 60px 10%;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.service-block img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

.service-text h2 {
  font-size: 1.8rem;
  color: #8B1015;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service-text ul li {
  margin: 8px 0;
  font-size: 1rem;
}

.business-info {
  padding: 60px 10%;
  text-align: center;
  background: white;
}

.business-info h2 {
  font-size: 2rem;
  color: #8B1015;
  margin-bottom: 15px;
}

.business-info p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .service-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-block img {
    margin-bottom: 20px;
  }
}

.contact-hero {
  padding: 80px 10%;
  text-align: center;
  background: white;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: #8B1015;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 10%;
}

.contact-info h2, .contact-form h2 {
  color: #8B1015;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 2px solid #C89B3C;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background: #8B1015;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #C89B3C;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Before & After Section */
#before-after {
  text-align: center;
  padding: 50px 20px;
  background: whiteZ; /* soft neutral background */
}

#before-after h2 {
  font-size: 2rem;
  color: #b8860b; /* gold tone */
  margin-bottom: 10px;
}

#before-after p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}

.before-after-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.images {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.image-block {
  flex: 1;
  max-width: 300px;
}

.image-block h3 {
  font-size: 1.2rem;
  color: #a52a2a; /* red accent */
  margin-bottom: 10px;
}

.image-block img {
  width: 100%;
  border: 3px solid #b8860b; /* gold border */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-block img:hover {
  transform: scale(1.05);
}