﻿:root {
  --brand-green: #065c15;
  --brand-green-dark: #04440f;
  --text-main: #1f2937;
  --bg-soft: #f8faf8;
  --card-border: #dbe4db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-main);
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

/* Bootstrap-independent fallback styles */
a {
  color: #0b5ed7;
}

.text-center {
  text-align: center !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-white {
  color: #ffffff !important;
}

.d-block {
  display: block !important;
}

.w-100 {
  width: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

.g-3 {
  row-gap: 1rem;
}

.g-4 {
  row-gap: 1.5rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.ms-auto {
  margin-left: auto !important;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 0;
}

.navbar > .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-brand {
  color: #ffffff;
  text-decoration: none;
}

.navbar-toggler {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.4rem;
  background: transparent;
  padding: 0.45rem 0.5rem;
  color: #ffffff;
  cursor: pointer;
}

.navbar-toggler-icon {
  display: block;
  width: 1.4rem;
  height: 1.05rem;
  background-image: linear-gradient(
    to bottom,
    #ffffff 0,
    #ffffff 2px,
    transparent 2px,
    transparent 5px,
    #ffffff 5px,
    #ffffff 7px,
    transparent 7px,
    transparent 10px,
    #ffffff 10px,
    #ffffff 12px
  );
}

.navbar-collapse {
  width: 100%;
  display: none;
  padding-top: 10px;
}

.navbar-collapse.show {
  display: block;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
}

.collapse:not(.show) {
  display: none;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  padding: 0.55rem 1rem;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.05rem;
}

.form-control {
  width: 100%;
  display: block;
  border: 1px solid #ced4da;
  border-radius: 0.45rem;
  padding: 0.6rem 0.75rem;
  font: inherit;
  background: #ffffff;
}

textarea.form-control {
  resize: vertical;
}

.accordion-button {
  width: 100%;
  border: 0;
  background: #ffffff;
  text-align: left;
  padding: 1rem 1.2rem;
  position: relative;
  cursor: pointer;
}

.accordion-button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  margin-left: 0 !important;
  display: inline-block;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
}

.accordion-body {
  padding: 1rem 1.2rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  cursor: pointer;
}

.carousel-control-prev {
  left: 12px;
}

.carousel-control-next {
  right: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-image: none !important;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  display: block;
}

.carousel-control-prev-icon::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.carousel-control-next-icon::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* Site theme styles */
.site-header {
  background: #000000;
}

.site-header .navbar {
  min-height: 72px;
}

.site-header .navbar-brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-header .nav-link {
  color: #ffffff;
  font-weight: 600;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
  color: #9ae6a5;
}

.section-pad {
  padding: 64px 0;
}

.section-title {
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  margin: 0;
  color: #4b5563;
  font-size: 1.1rem;
}

.hero-title {
  padding: 48px 0 40px;
}

.hero-title h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-title p {
  font-size: 1.2rem;
  margin: 0;
}

.card-soft {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(12, 46, 18, 0.08);
}

.split-image {
  border-radius: 18px;
  overflow: hidden;
}

.cta-banner {
  position: relative;
  padding: 80px 0;
  color: #ffffff;
  background: url("../images/appliances-4.png") center center / cover no-repeat;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-weight: 800;
  margin-bottom: 24px;
}

.btn-brand {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #ffffff;
  font-weight: 700;
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #ffffff;
}

.whatsapp-band {
  background: #ffe15a;
  border-top: 2px solid #d8b200;
  border-bottom: 2px solid #d8b200;
  padding: 30px 0;
}

.whatsapp-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.whatsapp-band__label {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3d3000;
}

.whatsapp-band__button {
  display: inline-block;
  text-decoration: none;
  background: #065c15;
  color: #ffffff !important;
  border: 2px solid #03420f;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-band__button:hover,
.whatsapp-band__button:focus {
  background: #04440f;
  color: #ffffff !important;
  text-decoration: none;
}

.accordion .accordion-item {
  background: #97a68e;
  border: 0;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1.2rem 1.4rem;
}

.accordion .accordion-button {
  font-weight: 700;
  color: #9b3902;
  background: transparent;
  border-radius: 1.25rem;
  padding: 0.4rem 0.6rem;
}

.accordion .accordion-button:not(.collapsed) {
  color: #9b3902;
  background: transparent;
  box-shadow: none;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-body {
  color: #0c2c68;
  padding: 0.8rem 0.6rem 0.1rem;
}

.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
}

.social-links a:hover {
  color: var(--brand-green);
}

.footer {
  background: #0e1111;
  color: #c5d0c5;
  padding: 20px 0;
  font-size: 0.95rem;
}

.page-banner {
  background: linear-gradient(180deg, #f5faf5 0%, #ffffff 100%);
  padding: 48px 0;
  border-bottom: 1px solid #e6ece6;
}

.page-banner h1 {
  margin: 0;
  font-weight: 900;
}

.feature-list {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
}

.feature-list h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.feature-list p,
.feature-list li {
  color: #374151;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 1px solid #d7dfd7;
  display: block;
}

.contact-note {
  background: #f5faf5;
  border: 1px solid #dde7dd;
  border-radius: 14px;
  padding: 22px;
}

.chatbox {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 320px;
  max-width: calc(100vw - 30px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  z-index: 1000;
}

.chatbox-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 12px;
}

.chatbox-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chatbox-name {
  font-weight: 700;
  line-height: 1.1;
}

.chatbox-role {
  font-size: 0.86rem;
  opacity: 0.95;
}

.chatbox-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chatbox-body {
  padding: 16px;
  background: #f3f6f3;
}

.chatbox-message {
  margin-bottom: 14px;
  background: #e9f5ff;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

.chatbox-action {
  text-align: center;
}

.chat-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.chat-float img {
  width: 32px;
  height: 32px;
}

.chat-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 18px;
  text-align: center;
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .p-lg-5 {
    padding: 3rem !important;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    width: auto;
    padding-top: 0;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 48px 0;
  }

  .cta-banner {
    padding: 58px 0;
  }

  .hero-title {
    padding: 38px 0 28px;
  }
}

#ventCarousel {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

#ventCarousel .carousel-item img {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  #ventCarousel .carousel-item img {
    height: min(64vh, 560px);
    object-fit: cover;
    object-position: center;
  }
}

.no-scroll {
  overflow: hidden;
}

.contact-form-message {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form-message--error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.thankyou-modal.is-open {
  display: block;
}

.thankyou-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.thankyou-modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 2rem));
  margin: 14vh auto 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.thankyou-modal__dialog h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 800;
}

.thankyou-modal__dialog p {
  margin-bottom: 20px;
  color: #374151;
}

.thankyou-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: #374151;
  cursor: pointer;
}


.brands-image {
  display: block;
  width: min(980px, 100%);
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.accordion-group {
  padding-bottom: 0 !important;
}

.accordion-group + .accordion-group {
  padding-top: 0 !important;
  margin-top: 0;
}

.accordion-group .section-title {
  margin-bottom: 1rem;
}
