body {
  opacity: 1 !important;
  transform: none !important;
  font-family: 'Varela Round', sans-serif;
  background: #f4f4f4;
  color: #333;
  transition: opacity 0.8s ease;
}

body.loaded {
  opacity: 1;
}

/* TOP RIBBON */
.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 0.2vh 0.8vw rgb(0, 0, 0);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.ribbon-label {
  font-weight: bold;
  color: #000000;
  flex-shrink: 0;
  white-space: nowrap;
}

.ribbon-logo img {
  background-color: rgba(0, 0, 0, 0.6);
}

.ribbon-buttons {
  display: flex;
}

.ribbon-buttons a {
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  font-weight: bolder;
  transition: background 0.2s ease;
}

.ribbon-buttons a:hover {
  background: #FFA500;
  color: #ffffff;
}

.top-ribbon.hide {
  transform: translateY(-100%);
}

/* CONTACT SECTION */
#contact {
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#contact-form {
  position: relative;
  background: #555;
  display: flex;
  flex-direction: column;
}

#contact-form-title,
#contact-form-subtitle {
  font-family: 'Varela Round', sans-serif;
  color: #fff;
}

#contact-section-title {
  font-family: 'Varela Round', sans-serif;
  color: #000;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #555;
  color: #fff;
  transition: all 0.3s ease;
}

#contact-box:hover {
  background: linear-gradient(135deg, #ffa500, #ffcc80);
  color: #000;
  transform: translateY(-0.5vw);
}

#contact-form input,
#contact-form textarea,
#contact-form select {
  position: relative;
  width: 100%;
  transition: border-color 0.2s;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
  border-color: #007bff;
  outline: none;
}

#contact-form select {
  border: none;
  background-color: #fff;
  color: #000;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1vw center;
}

#contact-submit-btn {
  background-color: #ffc107;
  color: #333;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-submit-btn:hover {
  background-color: #e0a800;
}

/* FOOTER */
footer {
  background: #222;
  color: #f4f4f4;
  text-align: center;
  font-size: 1vw;
}

footer .social-icon {
  color: #f4f4f4;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .social-icon:hover {
  color: #df9100;
}

.highlight-keyword {
  color: #FFA500;
  -webkit-text-stroke: 0.05vw #333;
}

/* ---------------------------------- */
/* Responsive Layouts via Media Queries */

/* 
  ##Device = Desktops --DONE--
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* GLOBAL */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    padding-top: 10vh;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.6;
  }
  
  /* TOP RIBBON */
  .top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 7vh;
    display: flex;
    align-items: center;
    gap: 3vw;
  }

  .ribbon-label {
    font-size: 1.5vw;
    margin-left: 1vw;
    margin-right: 1vw;
  }

  .ribbon-logo img {
    margin-top: 1vh;
    margin-left: 0.5vw;
    height: 6vh;
  }

  .ribbon-buttons {
    display: flex;
    gap: 2vw;
  }

  .ribbon-buttons a {
    padding: 1vh 1vw;
    letter-spacing: 0.1vw;
  }

  /* CONTACT */
  #contact {
    padding: 1vh 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #contact-form-title {
    width: 100%;
    font-size: 3vw;
    padding: 1vh 2vw;
    margin-top: 2vh;
    margin-bottom: 1vh;
  }

  #contact-form-subtitle {
    font-size: 2vw;
    margin-bottom: 3vh;
  }

  #contact-form {
    width: 100%;
    max-width: 100vw;
    padding: 4vh 5vw;
    border-radius: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 2vh 2vw;
    font-size: 1vw;
    border-radius: 3vw;
  }

  #contact-form select {
    width: 100%;
    padding: 2vh 2vw;
    font-size: 1vw;
    background-position: right 1vw center;
    background-size: 1.5vw;
    border-radius: 3vw;
  }

  #contact-form textarea {
    min-height: 5vw;
  }

  #contact-submit-btn {
    padding: 3vh;
    font-size: 1vw;
    border-radius: 3vw;
    margin-bottom: 4vh;
  }

  #contact-section-title {
    width: 100%;
    font-size: 3vw;
    padding: 1vh 2vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .contact-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 2vh;
    margin-bottom: 5vh;
  }

  #contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 6vw;
    border-radius: 4vw;
    width: 25vw;
  }

  #contact-box h4 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
  }

  #contact-box p {
    font-size: 1vw;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 2vh 0;
    font-size: 1vw;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 1vw;
    margin-top: 1vh;
  }

  footer .copyright-note {
    margin-top: 1vh;
  }
}

/* 
  ##Device = Laptops, Desktops --DONE--
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
/* GLOBAL */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    padding-top: 10vh;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.6;
  }

  /* TOP RIBBON */
  .top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 7vh;
    display: flex;
    align-items: center;
    gap: 3vw;
  }

  .ribbon-label {
    font-size: 1.5vw;
    margin-left: 1vw;
    margin-right: 1vw;
  }

  .ribbon-logo img {
    margin-top: 1vh;
    margin-left: 0.5vw;
    height: 6vh;
  }

  .ribbon-buttons {
    display: flex;
    gap: 2vw;
  }

  .ribbon-buttons a {
    padding: 1vh 1vw;
    letter-spacing: 0.1vw;
  }

  /* CONTACT */
  #contact {
    padding: 1vh 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #contact-form-title {
    width: 100%;
    font-size: 3.5vw;
    padding: 1vh 2vw;
    margin-top: 2vh;
    margin-bottom: 1vh;
  }

  #contact-form-subtitle {
    font-size: 2vw;
    margin-bottom: 3vh;
  }

  #contact-form {
    width: 100%;
    max-width: 100vw;
    padding: 4vh 5vw;
    border-radius: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 1.5vw;
    border-radius: 3vw;
  }

  #contact-form select {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 1.5vw;
    background-position: right 1vw center;
    background-size: 1.5vw;
    border-radius: 3vw;
  }

  #contact-form textarea {
    min-height: 5vw;
  }

  #contact-submit-btn {
    padding: 3vh;
    font-size: 1.5vw;
    border-radius: 3vw;
    margin-bottom: 4vh;
  }

  #contact-section-title {
    width: 100%;
    font-size: 3.5vw;
    padding: 1vh 2vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .contact-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 0vh;
    margin-bottom: 5vh;
  }

  #contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 6vw;
    border-radius: 4vw;
    width: 90vw;
  }

  #contact-title {
    font-size: 2vw;
    margin-bottom: 1vh;
  }

  #contact-text {
    font-size: 1.5vw;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 2vh 0;
    font-size: 1.5vw;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin-top: 1vh;
  }

  footer .copyright-note {
    margin-top: 1vh;
  }
}

/* 
  ##Device = Tablets, iPads (Portrait) --DONE--
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
/* GLOBAL */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    padding-top: 10vh;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.6;
  }

  /* TOP RIBBON */
  .top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    padding: 1vh 0;
  }

  .ribbon-logo img {
    display: none;
  }

  .ribbon-label {
    font-size: 2.5vw;
    text-align: center;
    margin: 0;
  }

  .ribbon-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
  }

  .ribbon-buttons a {
    font-size: 2vw !important;
    background: #df9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vh 2.5vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }

  /* CONTACT */
  #contact {
    padding: 1vh 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #contact-form-title {
    width: 100%;
    font-size: 6vw;
    padding: 1vh 2vw;
    margin-top: 2vh;
    margin-bottom: 1vh;
  }

  #contact-form-subtitle {
    font-size: 4vw;
    margin-bottom: 3vh;
  }

  #contact-form {
    width: 100%;
    max-width: 100vw;
    padding: 4vh 5vw;
    border-radius: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 3vw;
    border-radius: 3vw;
  }

  #contact-form select {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 3vw;
    background-position: right 1vw center;
    background-size: 1.5vw;
    border-radius: 3vw;
  }

  #contact-form textarea {
    min-height: 5vw;
  }

  #contact-submit-btn {
    padding: 3vh;
    font-size: 3vw;
    border-radius: 3vw;
    margin-bottom: 4vh;
  }

  #contact-section-title {
    width: 100%;
    font-size: 6vw;
    padding: 1vh 2vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .contact-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 0vh;
    margin-bottom: 5vh;
  }

  #contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 6vw;
    border-radius: 4vw;
    width: 90vw;
  }

  #contact-title {
    font-size: 4vw;
    margin-bottom: 1vh;
  }

  #contact-text {
    font-size: 3vw;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 2vh 1vw;
    font-size: 2.5vw;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin-top: 1vh;
  }

  footer .copyright-note {
    margin-top: 1vh;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait) --DONE--
  ##Screen = B/w 320px to 480px
*/
@media (min-width: 320px) and (max-width: 480px) {
/* GLOBAL */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    padding-top: 10vh;
    font-family: 'Varela Round', sans-serif;
    line-height: 1.6;
  }

  /* TOP RIBBON */
  .top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    padding: 1vh 0;
  }

  .ribbon-logo img {
    display: none;
  }

  .ribbon-label {
    font-size: 4vw;
    text-align: center;
    margin: 0;
  }

  .ribbon-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
  }

  .ribbon-buttons a {
    font-size: 2.5vw !important;
    background: #df9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vh 2.5vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }

  /* CONTACT */
  #contact {
    padding: 1vh 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #contact-form-title {
    width: 100%;
    font-size: 6vw;
    padding: 1vh 2vw;
    margin-top: 2vh;
    margin-bottom: 1vh;
  }

  #contact-form-subtitle {
    font-size: 4vw;
    margin-bottom: 3vh;
  }

  #contact-form {
    width: 100%;
    max-width: 100vw;
    padding: 4vh 5vw;
    border-radius: 3vw;
    display: flex;
    flex-direction: column;
    gap: 2vh;
  }

  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 3vw;
    border-radius: 3vw;
  }

  #contact-form select {
    width: 100%;
    padding: 2vh 4vw;
    font-size: 3vw;
    background-position: right 1vw center;
    background-size: 1.5vw;
    border-radius: 3vw;
  }

  #contact-form textarea {
    min-height: 5vw;
  }

  #contact-submit-btn {
    padding: 3vh;
    font-size: 3vw;
    border-radius: 3vw;
    margin-bottom: 4vh;
  }

  #contact-section-title {
    width: 100%;
    font-size: 6vw;
    padding: 1vh 2vw;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }

  .contact-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 0vh;
    margin-bottom: 5vh;
  }

  #contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 6vw;
    border-radius: 4vw;
    width: 90vw;
  }

  #contact-title {
    font-size: 5vw;
    margin-bottom: 1vh;
  }

  #contact-text {
    font-size: 4vw;
  }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 2vh 1vw;
    font-size: 3.5vw;
  }

  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin-top: 1vh;
  }

  footer .copyright-note {
    margin-top: 1vh;
  }
}