*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#dcdcdc;
}


/* HEADER */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  padding:0 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(to bottom,#111,transparent);
  z-index:999;
}

.logo{
  height:80px;
  width:auto;
  object-fit:contain;
}

.navbar{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  align-items:center;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  white-space:nowrap;
}

.navbar a.active{
  color:#d49e4e;
}

/* Hamburger hidden in desktop */
.menu-toggle{
    display:none;
    width:35px;
    height:25px;
    background:none;
    border:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.menu-toggle span{
    width:100%;
    height:2px;
    background:white; /* change if needed */
    border-radius:5px;
}


@media screen and (max-width:768px){

    .menu-toggle{
        display:flex !important;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:100vw;
        height:100vh;
        background:rgba(0,0,0,0.96);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:right .4s ease;
        z-index:9999;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        font-size:20px;
        color:white;
    }
  }
/* CONTACT */
.contact-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:100px;
  padding:120px 40px;
}

.contact-left,
.contact-right{
  width:400px;
}

.contact-left h2,
.contact-right h2{
  font-size:38px;
  margin-bottom:20px;
}

.contact-left p{
  margin-bottom:35px;
  line-height:1.8;
}

.contact-right input,
.contact-right select{
  width:100%;
  height:50px;
  margin-bottom:15px;
  padding:0 15px;
  border:1px solid #999;
  background:transparent;
}

.phone-row{
  display:flex;
  gap:15px;
}

.phone-row select{
  width:120px;
}

button{
  width:140px;
  height:45px;
  border:none;
  background:#c8821f;
  color:white;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .contact-section{
    flex-direction:column;
    gap:50px;
    padding:140px 20px 40px;
  }

  .contact-left,
  .contact-right{
    width:100%;
  }

  .contact-left h2,
  .contact-right h2{
    font-size:28px;
  }
}