/* Global Resets & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --color-body: #333;
  --color-primary: #8cc73a;
  --color-dark: #1a1a1a;
  --font-primary: "Inter", 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: 1200px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}

.container .row .col-4:not(.quote-form) > div {
  border-radius: 0;
  border: 1px solid #fff;
  font-weight: 400;
}

.area-btn {
  font-weight: 400!important;
  font-size: 16px!important;
}

.section-stats {
  background-color: #eee;
}

.section-stats .col-4 h3 {
  font-size: 2.25rem;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  color: #8cc73a;
}

/* Header & Navigation */
.site-header {
  padding: 1.25rem 0;
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
}

.site-header .container {
  max-width: 1400px;
}

.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;
}

 .award-title {
    font-size: 32px;
    padding-bottom: 15px;
  }

.logo-area img {
  max-width: 120px;
  min-width: unset;
}

.logo {
  margin-right: 1rem;
  width: 100%;
  min-width: 15rem;
}

.license-info {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.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-image.jpg") center center no-repeat;
  background-size: cover;
  display: flex;
  color: #fff;
  padding: 80px 20px;
  height: 90vh;
  min-height: 600px;
}

.hero-content {
  position: relative;
  padding: 0 0 2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  max-width: 1400px;
  gap: 50px;
}

.hero-content h1 {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  margin-bottom: 0.2rem;
  line-height: 4rem;
  font-weight: 600;
}

.hero-content .col-2:nth-of-type(2) {
  padding-left: 0;
}

.hero-content .col-2:nth-of-type(2) .quote-form {
  background-color: #fff;
}

.hero-content .col-2:nth-of-type(2) .quote-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
  padding: 15px 10px;
  background-color: #000;
  text-transform: uppercase;
}

.hero-content .col-2:nth-of-type(2) .quote-form .quote-btn {
  background-color: #8cc73a;
}

.subtitle span {
  font-weight: 400;
}

.subtitle {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.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;
}

/* Split Grid Section */
.page-builder-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.split-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 0; 
  height: 900px;
}

.split-grid-row .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  line-height: normal;
  margin-left: auto;
  padding-right: 74px;
  max-width: 550px;
  padding-left: 20px;
}

.split-grid-row.row-reverse .text-col {
  padding-left: 74px;
  padding-right: 20px;
  margin-left: 0;
  margin-right: auto;
}

.split-grid-row .img-col {
  margin: 0;
  padding: 0;
}

.split-grid-row .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.process-container .eyebrow {
  text-align: center;
}

.btn-green.btn-assessment {
  border: 1px solid #8cc73a;
  padding: 15px;
  background-color: #8cc73a;
  display: block;
  max-width: max-content;
  color: #fff;
  margin: 40px auto 0;
  font-weight: 500;
  transition: all ease .3s;
  border-radius: 10px;
}

.btn-green.btn-assessment:hover {
  background-color: transparent;
  color: #8cc73a;
}

.assessment-info .eyebrow {
  font-size: 20px!important;

  @media (max-width: 768px) {
    font-size: 16px!important;
  }
}

.split-grid-row .eyebrow,
.process-container .eyebrow,
.assessment-info .eyebrow,
.about-content .eyebrow {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #8cc73a;
  display: block;
}

.split-grid-row h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 25px 0;
  letter-spacing: -1.5px;
}

.split-grid-row h2 i {
  display: block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.split-grid-row p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  max-width: 450px;
  margin-bottom: 30px;
}

.split-grid-row .btn-green {
  background-color: #8cc73a;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 15px;
  width: fit-content;
  border: 1px solid #8cc73a;
  transition: all ease .3s;
  border-radius: 10px;
}

.split-grid-row .btn-green:hover {
  background-color: transparent;
  color: #8cc73a;
}

/* Process Section */
.process-section-outer {
  width: 100%;
  background-color: #eee;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  color: #000;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.process-container h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 60px 0;
  letter-spacing: -1.5px;
  text-align: center;
}

.process-container h2 i {
  display: block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 80px;
  border-top: 1px solid #D1D1D1;
  padding-top: 60px;
}

.process-item {
  display: flex;
  flex-direction: column;
}

.process-item .step-number {
  width: 40px;
  height: 40px;
  background-color: #8cc73a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

.process-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  letter-spacing: -0.3px;
}

.process-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Gallery Section */
.gallery-outer-wrapper {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-container h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.gallery-container p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Video Section */
.video-section-wrapper {
  width: 100%;
  padding: 60px 0 0;
  font-family: 'Inter', sans-serif;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Assessment Section */
.assessment-section {
  background-color: #efefef;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  color: #000;
}

.assessment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  box-sizing: border-box;
  align-items: center;
}

.assessment-info h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 30px 0;
  letter-spacing: -1.5px;
}

.assessment-info h2 i {
  display: block;
  font-style: italic;
  font-weight: 400;
}

.assessment-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.assessment-list li {
  padding: 20px 0;
  border-top: 1px solid #ccc;
  font-weight: 700;
  font-size: 15px;
}

.assessment-list li:last-child {
  border-bottom: 1px solid #ccc;
}

.quote-form .form-quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-group label span {
  color: #d93025;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

.quote-btn {
  grid-column: span 2;
  background: #8cc73a;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #8cc73a;
  padding: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  width: fit-content;
  min-width: 200px;
  transition: background 0.3s;
}

.quote-btn:hover {
  background: transparent;
  color: #8cc73a;
}

/* About Section */
.about-section {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 30px 0;
  letter-spacing: -1.5px;
  color: #000;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
}

.quote-text {
  font-weight: 700;
  font-style: italic;
  margin-top: 30px;
  border-left: 3px solid #000;
  padding-left: 20px;
}

.signature-box {
  margin-top: 40px;
}

.signature-box img {
  max-width: 200px;
  margin-bottom: 10px;
}

.signature-box .name {
  font-weight: 800;
  display: block;
  font-size: 18px;
}

.signature-box .title {
  font-size: 14px;
  color: #666;
}

/* Form Section */
#quote {
  color: #333;
  padding: 1.2rem;
  width: 100%;
  margin-left: auto;
  border-radius: 0!important;
  border: 0!important;
  background-color: #fff;
}

.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:0;
}

.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: 0;
}

a.quote-btn {
  background: #00000066;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
}

a.quote-btn:hover {
  border: 1px solid #fff;
}

.footer-logo-container {
  display: flex;
  justify-content: space-between;
}

textarea.form-control {
  height: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

/* Buttons */
.btn {
  background-color: #8cc73a;
  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: 600;
  text-align: center;
  display: inline-block;
  border: 1px solid #8cc73a;
}

.btn-block {
  display: block;
  width: 100%;
}

.hero-sub-cta {
  text-align: center;
  color: #8cc73a;
  padding-bottom: 10px;
  font-weight: 600;
}

.hero-cta-btn {
  max-width: max-content;
  margin: 0 auto;
  padding: 10px;
  transition: all 0.3s ease;
}

.hero-cta-btn:hover {
  background-color: #fff;
  color: var(--color-dark);
}

.btn:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn.btn-transparent,
.hero-cta-btn {
  color: #fff;
  border: 1px solid #FFF;
  background-color: #1a1a1a57;
  font-size: 2rem;
  font-weight: 400;
  font-size: 16px;
}

.btn.btn-transparent:hover {
  background-color: #FFF;
  color: var(--color-dark);
}

.btn.btn-transparent:hover svg path {
  fill: var(--color-dark);
}

/* 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: 'Inter', 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: 1px solid var(--color-dark);
  border-radius: 0;
}

/* Ensure both form buttons look the same */
#heroQuoteForm .quote-btn, #footerQuoteForm .quote-btn {
    background: #8cc73a;
    color: #fff;
    /* other styles from your sheet */
}

/* Header Licensing */
.header-top .licensing {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-top a.btn {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1px solid #8cc73a;
  background-color: #8cc73a;
  border-radius: 10px;
}

.header-top a.btn:hover {
  background-color: transparent;
  color: #8cc73a;
}

.header-top a.btn:hover svg a {
  fill: #8cc73a;
}

.header-top a.btn svg {
  height: 23px;
}

.header-top a.btn svg path {
  fill: #fff;
}

.img-title {
  padding-top: 10px;
  font-size: 1.25rem;
}

#previous-projects .col-6 {
  padding-bottom: 10px;
}

/* Footer */
.site-footer {
  background-color: #2c2c2c;
  text-align: left;
  padding: 50px 0 20px;
  color: #fff;
}

.house-badge-footer {
  padding: 0 0 15px;
  width: 100%;
  max-width: 300px;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

.site-footer .container .row {
  flex-direction: column;
  margin-left: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
}

.site-footer .footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

/* 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: 50px;
  height: 50px;
  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.4rem;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  background: var(--color-primary);
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

.cta-mobile svg {
  width: 20px;

  path {
    fill: #fff;
  }
}

.cta-mobile a span {
  display: flex;
  gap: 5px;
  justify-content: center;
}

/* ============================================
   RESPONSIVE STYLES - MOBILE OPTIMIZATION
   ============================================ */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {

    .assessment-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content .col-2:nth-of-type(2) {
    padding-left: 0;
    width: 100%;
    max-width: 600px;}
  .hero-section {
    height: auto;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-content.container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .hero-content.container .col-2:nth-of-type(1) {
    text-align: center;
    padding-left: 0;
  }
}

/* Tablet Portrait (900px and below) */
@media (max-width: 900px) {
  /* Split Grid Sections */
  .split-grid-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .split-grid-row .text-col {
    order: 2;
    padding: 50px 30px;
    margin-left: 0;
    max-width: 100%;
  }

  .split-grid-row.row-reverse .text-col {
    padding: 50px 30px;
    margin-right: 0;
  }

  .split-grid-row .img-col {
    order: 1;
    height: 400px;
    min-height: 300px;
  }

  .split-grid-row h2 {
    font-size: 38px;
  }

  .split-grid-row p {
    max-width: 100%;
  }

  /* Assessment Section */


  .assessment-info h2 {
    font-size: 38px;
  }

  .quote-form .form-quote {
    grid-template-columns: 1fr;
  }

  .form-group.full-width,
  .quote-btn {
    grid-column: span 1;
  }

  /* About Section */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    order: -1;
    text-align: center;
  }

  .quote-text {
    text-align: left;
  }

  /* Process Section */
  .process-section-outer {
    padding: 60px 0;
  }

  .process-container h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
}

/* Tablet Small / Large Phone (768px and below) */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero Section */
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 50px 20px;
  }

  .hero-content {
    margin-top: 80px;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 2.8rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

 

  /* Navigation */
  .main-nav {
    display: none;
  }

  /* Process Grid */
  .process-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-container h2,
  .award-title
  {
    font-size: 28px;
  }

  /* Stats Section */
  .section-stats .row {
    flex-direction: column;
  }

  .section-stats .col-4 {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-logo-container,
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
/* 
  .footer-bottom {
    text-align: center;
  } */

  /* About Section */
  .about-content h2 {
    font-size: 34px;
  }

  /* Assessment Section */
  .assessment-section {
    padding: 60px 0;
  }
}

/* Mobile Large (680px and below) */
@media (max-width: 680px) {
  .house-badge-footer {
    margin: auto;
  }

  .subtitle br 
  {
    display: none;
  }
  /* Grid System */
  .row {
    margin-left: 0;
  }

  .col-8,
  .col-6,
  .col-5,
  .col-4 {
    width: 100%;
    padding-left: 0;
  }

  /* Hero Section */
  .hero-section {
    height: auto;
    min-height: 450px;
    padding-top: 120px;
  }

  .hero-content {
    margin-top: 40px;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 2.2rem;
  }

  .subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .subtitle span {
    display: block;
  }

  /* Header */
  .header-top {
    padding-bottom: 1rem;
    gap: 10px;
  }

  .logo-area img {
    max-width: 100px;
  }

  .header-top .licensing {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .license-info {
    font-size: 14px;
  }

  .header-top a.btn {
    font-size: 14px;
    padding: 8px;
  }

  /* Split Grid Sections */
  .split-grid-row .text-col {
    padding: 40px 20px;
  }

  .split-grid-row.row-reverse .text-col {
    padding: 40px 20px;
  }

  .split-grid-row h2 {
    font-size: 32px;
  }

  .split-grid-row .img-col {
    height: 300px;
  }

  /* Process Section */
  .process-container h2 {
    font-size: 32px;
  }

  /* Gallery */
  .gallery-container h2 {
    font-size: 24px;
  }

  /* About Section */
  .about-section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  /* Assessment Section */
  .assessment-info h2 {
    font-size: 32px;
  }

  /* Typography */
  .section-title {
    font-size: 1.75rem;
  }

  .fs-48 {
    font-size: 2rem;
  }

  .fs-32 {
    font-size: 1.5rem;
  }

  .fs-24 {
    font-size: 1.25rem;
  }

  /* Mobile CTA */
  .cta-mobile {
    display: block;
  }

  /* Footer */
  .site-footer {
    padding-bottom: 5rem;
    text-align: center;
            margin-bottom: 2rem;
  }

  .site-footer .col-4.text-right {
    text-align: center;
  }

  /* Utility */
  .xs-hidden {
    display: none;
  }
}

/* Mobile Medium (514px and below) */
@media (max-width: 514px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.9rem;
    margin-bottom: 15px;
  }

  .hero-content h1 br {
    display: none;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Header */
  .header-top a.btn {
    font-size: 0.875rem;
    padding: 8px 10px;
  }

  .header-top a.btn svg {
    height: 18px;
  }

  /* Split Grid */
  /* .split-grid-row h2 {
    font-size: 28px;
  } */

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Assessment */
  .assessment-info h2 {
    font-size: 28px;
  }

  .assessment-list li {
    font-size: 14px;
    padding: 15px 0;
  }
}

/* Mobile Small (419px and below) */
@media (max-width: 419px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 26px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .subtitle {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }

  .subtitle span {
    display: block;
    font-weight: 500;
    font-size: 14px;
  }

  .hero-sub-cta {
    font-size: 14px;
  }

  .hero-cta-btn {
    font-size: 14px;
    padding: 8px 12px;
  }

  /* Container */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Split Grid */
  .split-grid-row .text-col {
    padding: 30px 15px;
  }

  .split-grid-row.row-reverse .text-col {
    padding: 30px 15px;
  }

  .split-grid-row h2 {
    font-size: 24px;
  }

  .split-grid-row p {
    font-size: 14px;
  }

  /* Process Section */
  .process-container {
    padding: 0 15px;
  }

  /* .process-container h2 {
    font-size: 24px;
  } */

  .process-item h3 {
    font-size: 18px;
  }

  .process-item p {
    font-size: 14px;
  }

  /* Gallery */
  .gallery-container h2 {
    font-size: 22px;
  }

  .gallery-container p {
    font-size: 14px;
  }

  /* About Section */
  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 14px;
  }

  /* Assessment Section */
  .assessment-info h2 {
    font-size: 24px;
  }

  .assessment-info p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 15px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0 5rem;
    margin-bottom: 0;
  }

  .house-badge-footer {
    max-width: 200px;
  }

  /* CTA Mobile */
  /* .cta-mobile {
    font-size: 14px;
    padding: 0.75rem;
  } */
}

/* Tablet Landscape & Medium Screens (768px to 1080px) */
@media screen and (min-width: 768px) and (max-width: 1080px) {
  body, html {
    font-size: clamp(14px, 1.3vw, 16px);
  }

  .col-5-md {
    width: 50%;
  }

  .main-nav ul {
    gap: 3rem;
  }

  .main-nav a {
    font-size: 1rem;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 22px;
    line-height: 20px;
  }

  .split-grid-row h2 {
    font-size: 20px;
  }

  .process-container h2,
  .assessment-info h2,
  .about-content h2 {
    font-size: 20px;
  }

  .header-top a.btn {
    font-size: 12px;
    padding: 6px 8px;
  }
}

/* Landscape Mobile Phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content {
    margin-top: 20px;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .cta-mobile,
  .hero-cta-btn,
  #thankYouModal,
  #modalOverlay {
    display: none;
  }

  .hero-section {
    height: auto;
    background: #fff;
    color: #000;
  }

  body {
    font-size: 12pt;
  }
}