@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Resets & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --color-body: #333;
  --color-primary: #d8ae66;
  --color-dark: #1a1a1a;
  --font-primary: "Sen", sans-serif;
}

html, body {
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--color-body);
  line-height: 1.2;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

p {
  font-size: 1.125rem;
  line-height: 1.35;
}

/* Grid */
.row {
  margin-left: -1.25rem;
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 1rem;
}

.col-6 {
  width: 50%;
}

.col-8 {
  width: 66.67%;
}

.col-5 {
  width: 50%;
}

.col-4 {
  width: 33.33%;
}

[class^='col-'] {
  padding-left: 1.25rem;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1024px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

.container .row .col-4 > div {
  border-radius: 10px;
}

/* Header & Navigation */
.site-header {
  padding: 1.25rem 0;
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}

.header-top {
  color: #FFF;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
  justify-content: space-between;
}

.logo-area {
  max-width: 18.75rem;
  flex-grow: 1;
}

.logo {
  margin-right: 1rem;
  width: 100%;
  min-width: 15rem;
}

.license-info {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary);
}

.main-nav ul {
  display: flex;
  gap: 5rem;
  justify-content: center;
}

.main-nav a {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.call-info {
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(#00000099, #00000033), url("../images/main.webp") center center no-repeat;
  background-size: cover;
  display: flex;
  color: #fff;
  padding-top: 11.5625rem;
  padding-bottom: 3.125rem;
  padding-left: 50px;
  padding-right: 50px;
}

.hero-content {
  position: relative;
  padding: 0 0 2rem;
  font-weight: 500;
}

.hero-content h2 {
  font-family: "Urbanist", sans-serif;
  font-size: 5.5rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 3rem;
  text-align: center;
}

.description {
  max-width: 37.5rem;
  margin-bottom: 3rem;
  font-size: 1.25rem;
}

.benefits-list {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.benefits-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath fill='%23FFF' d='M12 0c6.623 0 12 5.377 12 12s-5.377 12-12 12-12-5.377-12-12 5.377-12 12-12zm0 1c6.071 0 11 4.929 11 11s-4.929 11-11 11-11-4.929-11-11 4.929-11 11-11zm7 7.457l-9.005 9.565-4.995-5.865.761-.649 4.271 5.016 8.24-8.752.728.685z'/%3E%3C/svg%3E");
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  left: 0;
  color: #FFF;
  font-weight: bold;
}

/* Form Section */
.quote-form {
  background-color: #fff;
  color: #333;
  padding: 1.2rem;
  width: 100%;
  margin-left: auto;
  border-radius: 10px;
}

.quote-form__title {
  margin: -1.2rem -1.2rem 1.2rem -1.2rem;
  text-align: center;
  color: #FFF;
  background: var(--color-dark);
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 10px 10px 0 0;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.form-control {
  border: 1px solid #1a1a1a;
  font-size: 1rem;
  font-family: var(--font-primary);
  padding: 0 1rem;
  height: 2.8125rem;
  width: 100%;
  border-radius: 5px;
}

textarea.form-control {
  height: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* Buttons */
.btn {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 1.5rem 1rem;
  line-height: 1;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  border: 2px solid var(--color-primary);
  border-radius: 10px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn.btn-transparent {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  background-color: #1a1a1acc;
  font-size: 2rem;
  font-weight: 500;
}

.btn.btn-transparent:hover {
  background-color: var(--color-primary);
  color: var(--color-dark);
}

.btn.btn-transparent:hover svg path {
  fill: var(--color-dark);
}

.quote-btn {
  width: 100%;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-bg {
  background: #00000099 center center;
  background-size: cover;
  background-blend-mode: multiply;
  color: #FFF;
  border-radius: 10px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1em;
  font-family: 'Urbanist', sans-serif;
}

.title-line {
  position: relative;
  padding-bottom: 10px;
}

.title-line:after {
  display: block;
  content: '';
  width: 200px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
}

.text-center.title-line:after {
  left: 50%;
  margin-left: -100px;
}

.section-stripe {
  background: var(--color-dark);
  padding: 3rem 0;
  color: #FFF;
}

.section-stripe .btn:hover {
  border-color: var(--color-primary);
}

/* Lists */
.list-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}

.list-logos li img {
  max-width: 100%;
  height: auto;
}

.list-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-types li {
  min-width: 17.5rem;
  padding: 2.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  border: 3px solid var(--color-dark);
  border-radius: 10px;
}

/* Header Licensing */
.header-top .licensing {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-top a.btn {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top a.btn svg {
  height: 23px;
}

.header-top a.btn svg path {
  fill: var(--color-primary);
}

.img-title {
  padding-top: 10px;
  font-size: 1.25rem;
}

#previous-projects .col-6 {
  padding-bottom: 10px;
}

/* Footer */
.site-footer {
  background-color: #f2f2f2;
  text-align: left;
  padding: 1rem 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-card {
  background-color: #fff;
  color: var(--color-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 100px;
  height: 100px;
  background-color: #333;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 3px;
}

.testimonial-stars {
  color: #f2b01e;
  font-size: 1rem;
}

.testimonial-text {
  line-height: 1.5;
}

/* Modal */
#thankYouModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
}

#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#closeModal {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#closeModal:hover {
  background: #e04842;
}

/* Utility Classes */
.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.ml-auto, .mx-auto {
  margin-left: auto;
}

.mr-auto, .mx-auto {
  margin-right: auto;
}

.text-white {
  color: #FFF !important;
}

.text-body {
  color: var(--color-body) !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-justify-center {
  text-align-last: center;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-48 {
  font-size: 3rem;
}

.lh-1 {
  line-height: 1;
}

.font-bold {
  font-weight: bold;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.img-fluid {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.bg-white {
  background-color: #FFF !important;
}

.bg-gray {
  background-color: #F4F4F4;
}

.cta-mobile {
  display: none;
  padding: 1rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  background: var(--color-primary);
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Responsive Styles */
@media screen and (min-width: 768px) and (max-width: 1080px) {
  body, html {
    font-size: clamp(10px, 1.3vw, 16px);
  }

  .col-5-md {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .consultation-form {
    margin-left: 0;
    margin-top: 2rem;
  }

  .main-nav {
    display: none;
  }

  .logo-area img {
    max-width: 180px;
  }

  .license-info {
    font-size: 1rem;
  }

  .btn.btn-transparent {
    font-size: 1.5rem;
  }

  .site-header .btn {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-section .col-8 {
    order: 1;
    width: 50%;
  }

  .hero-section .col-4 {
    width: 50%;
    order: 0;
  }

  #why-choose-us .row.text-body {
    flex-direction: column;
    align-items: center;
  }

  #why-choose-us .row.text-body > .col-4 {
    padding-left: 0;
    width: 100%;
    max-width: 300px;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.25rem;
    margin-top: 0.2rem;
  }

  .subtitle span {
    display: block;
  }

  .description, .benefits-list {
    font-size: 1.1rem;
  }

  .benefits-list li::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 740px) {
  .header-top {
    padding-bottom: 1.625rem;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-section {
    padding-top: 14.5625rem;
  }

  .logo {
    margin-right: 0;
  }

  .header-top .licensing {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media screen and (max-width: 680px) {
  .row {
    margin-left: 0;
  }

  .col-8,
  .col-6,
  .col-4 {
    width: 100%;
    padding-left: 0;
  }

  .xs-hidden {
    display: none;
  }

  .fs-48 {
    font-size: 1.8rem;
  }

  .fs-24 {
    font-size: 1.2rem;
  }

  .cta-mobile {
    display: block;
  }

  .site-footer {
    padding-bottom: 5rem;
    text-align: center !important;
  }

  .hero-content.container .row.align-items-center {
    flex-direction: column;
  }

  .hero-content.container .row.align-items-center > div {
    width: 100%;
    gap: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .list-logos {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .list-logos li {
    width: auto;
  }

  .section.section-bg p {
    text-align: center;
  }
}

@media (max-width: 629px) {
  section.section .list-types {
    flex-direction: column;
  }

  section.section .list-types li {
    width: 100%;
    max-width: 400px;
  }
}