@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-italic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v30-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2");
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #232323;
  background-color: #fff;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 99;
}

.main-nav {
  background: #fff;
  border: 1px solid #b8e3e7;
  border-radius: 25px;
  overflow: hidden;
}

.nav-logo {
  padding: 5px 10px;
  width: 130px;
}

.theme-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  min-width: 140px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
  border: none;
}

.theme-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  color: #ffffff;
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  text-decoration: none;
}

.nav-actions {
  flex-wrap: wrap;
  gap: 10px !important;
}

.nav-btn {
  margin: 0 !important;
}

.first-section {
  padding-top: 150px;
  background: #ccc;
}

.top-banner {
  align-items: center;
}

.top-banner-img {
  min-height: 500px;
}

.bg-fixed-image {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0009;
}

.type-card {
  background: #b8e3e7;
  height: 100%;
  padding: 10px;
  margin: 10px;
  border-radius: 20px;
  text-align: center;
}

.type-card-image {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
}

form input {
  width: 97%;
  padding: 10px 0;
  margin-bottom: 17px;
  border: 0px none;
  border-bottom: 1px solid #000000;
  outline: none;
  background: #fff;
  color: #464646;
  height: 43px;
  border-radius: 0;
  box-shadow: none;
}

form textarea {
  min-height: 80px;
  width: 100%;
  padding: 10px 5px;
  margin-bottom: 10px;
  border: 0px none;
  border-bottom: 1px solid #000000;
  outline: none;
  line-height: normal;
  color: #000000;
  border-radius: 0;
  resize: vertical;
}

.site-footer {
  background: #b8e3e7;
  position: relative;
}


.footer-contact-box {
  display: none;
}

.whatsapp-fixed {
  position: fixed;
  right: 20px;
  bottom: 160px;
  z-index: 998;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.conversion-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 8px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  animation: slideDown 0.5s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #b8e3e7;
}

@media(max-width:768px) {
  .main-nav {
    padding: 8px 15px;
  }
  
  .nav-logo {
    width: 100px;
  }
  
  .nav-actions {
    gap: 8px !important;
  }
  
  .theme-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-width: 120px;
  }
}

@media(max-width:500px) {
  .site-header {
    position: absolute;
    top: 35px;
  }

  .main-nav {
    padding: 6px 10px;
    border-radius: 20px;
  }

  .nav-logo {
    width: 80px;
  }
  
  .nav-actions {
    flex-direction: column;
    gap: 5px !important;
    align-items: stretch;
  }
  
  .theme-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    min-width: 100px;
    border-radius: 20px;
  }

  .top-banner-img {
    min-height: 280px;
  }

  .first-section {
    padding-top: 140px;
  }

  .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
  }

  .footer-contact-box {
    display: flex;
    position: absolute;
    width: 100%;
    left: 0;
    top: -33px;
  }

  .whatsapp-fixed,
  .copyright {
    display: none;
  }
}

/* Google rating card */
.google-rating-sticky {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  min-width: 220px;
  max-width: 250px;
}

.google-logo {
  margin-right: 10px;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-text {
  font-size: 16px;
  color: #000;
}

.rating-stars {
  display: flex;
  align-items: center;
}

.rating-value {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-right: 5px;
}

.stars {
  display: flex;
}

.review-count {
  font-size: 12px;
  color: #555;
}

/* Mobile adjustments for Google rating and contact form */
@media (max-width: 768px) {
  .google-rating-sticky {
    bottom: 200px !important;
    left: 10px !important;
    max-width: 180px !important;
    padding: 8px 12px !important;
  }
  
  #contact {
    margin-bottom: 120px !important;
    padding-bottom: 40px !important;
  }
}
