#hero1-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image wrapper */
.hero1-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#hero1-hero .container {
  z-index: 2;
  width: 95%;
}

.hero1-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
#hero1-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.68) 35%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero1-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero1-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spaceSm);
  padding: 0.5rem 0.75rem;
  background-color: rgba(20, 20, 20, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--textColour1);
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
}

.hero1-tag::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--mainBrandColour);
  border-radius: 50%;
}

.hero1-content h1 {
  margin-bottom: var(--spaceSm);
  font-size: clamp(2.7rem, 6vw, 4rem);
  line-height: 1.2;
  max-width: 50rem;
}

.hero1-text {
  max-width: 36rem;
  margin-bottom: var(--spaceMd);
  margin-top: var(--spaceMd);
  color: var(--textColour2);
  font-size: 18px;
}

.hero1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero1-primary-btn {
  color: #111;
  box-shadow: 0 0 24px rgba(201, 162, 74, 0.38);
}

.hero1-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--textColour1);
  background-color: rgba(20, 20, 20, 0.16);
  text-decoration: none;
}

.hero1-secondary-btn:hover,
.hero1-secondary-btn:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
}

@media screen and (max-width: 768px) {
  .hero1-content {
    padding-bottom: 3rem;
  }

  .hero1-actions {
    align-items: flex-start;
  }
}

@media screen and (max-width: 426px) {
  .hero1-actions {
    width: 100%;
  }

  .hero1-actions .cta-button {
    width: 100%;
  }
}
/* HERO STYLES END */

/* Stats Section Start */
#stats {
  position: relative;
  z-index: 10;
  margin-top: -4rem;
  padding-top: 0;
  padding-bottom: 0;
}

.stats-bar {
  background: #28282850;
  border-radius: 1.25rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
}

.stats-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 0;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
}

.stats-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: rgba(201, 162, 74, 0.1);
  color: var(--mainBrandColour);
}

.stats-icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.stats-text {
  min-width: 0;
}

.stats-title {
  margin-bottom: 0.15rem;
  font-family: var(--headerFont);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--textColour1);
}

.stats-description {
  color: var(--textColour2);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Stats Section Responsive Start */
@media screen and (max-width: 1023px) {
  #stats {
    margin-top: -3rem;
  }

  .stats-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-item:nth-child(2) {
    border-right: none;
  }

  .stats-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media screen and (max-width: 640px) {
  #stats {
    margin-top: -2rem;
  }

  .stats-list {
    grid-template-columns: 1fr;
  }

  .stats-item {
    padding: 1.15rem 1.25rem;
  }

  .stats-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stats-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
/* Stats Section Responsive End */
/* Stats Section End */

/* About section Styles */
#about1-about {
  position: relative;
  background-color: var(--bgColour1);
}

.about1-grid {
  display: grid;
  gap: var(--spaceLg);
  align-items: center;
}

.about1-image-wrap {
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--bgColour2);
  height: 700px;
}

.about1-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about1-content {
  max-width: 38rem;
}

.about1-content .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.about1-content h2 {
  margin-bottom: var(--spaceSmmd);
}

.about1-heading-break {
  display: block;
}

.about1-heading-light {
  display: block;
  color: var(--textColour1);
  opacity: 0.5;
  font-style: italic;
  font-weight: 400;
}

.about-text > p {
  margin-bottom: var(--spaceSm);
  color: var(--textColour2);
}

.about1-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spaceSm);
  margin-top: var(--spaceMd);
  padding: 0;
}

.about1-features li {
  border-left: 2px solid var(--mainBrandColour);
  padding-left: 0.9rem;
}

.about1-features h3 {
  margin-bottom: 0.35rem;
  font-family: var(--headerFont);
  font-weight: 600;
  color: var(--textColour1);
  font-size: 1rem;
}

.about1-features p {
  color: var(--textColour2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about1-features .about-feature-title {
  margin-bottom: 0.35rem;
  font-family: var(--headerFont);
  font-weight: 600;
  color: var(--textColour1);
  font-size: 1.1rem;
}

@media screen and (min-width: 850px) {
  .about1-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media screen and (max-width: 850px) {
  .about1-grid {
    gap: var(--spaceMd);
  }

  .about1-content {
    max-width: 100%;
  }

  .about1-image-wrap {
    order: 2;
  }
}

@media screen and (max-width: 640px) {
  #about1-about::before {
    width: 12rem;
    right: -4rem;
  }

  .about1-features {
    grid-template-columns: 1fr;
  }

  .about1-image-wrap {
    height: 550px;
  }
}

/* Services Section Start */
#services {
  position: relative;
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
}

#services::before,
#services::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  background: rgba(201, 162, 74, 0.04);
  pointer-events: none;
}

#services::before {
  top: 0;
  right: 0;
  border-bottom-left-radius: 100%;
}

#services::after {
  bottom: 0;
  left: 0;
  border-top-right-radius: 100%;
}

#services .container {
  position: relative;
  z-index: 1;
}

.services-header {
  max-width: 52rem;
  margin: 0 auto var(--spaceLg);
  text-align: center;
}

.services-header .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.services-header h2 {
  margin-bottom: var(--spaceSm);
}

.services-intro {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--textColour2);
  font-size: 1rem;
}

.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spaceSmmd);
  padding: 0;
  margin: 0;
}

.services-card {
  position: relative;
  padding: 1.5rem;
  background-color: #050505;
  border-radius: 1rem;
  min-height: 14rem;
  overflow: hidden;
}

.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(201, 162, 74, 0.04);
  border-bottom-left-radius: 100%;
}

.services-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background-color: #262626;
  border-radius: 0.75rem;
}

.services-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.services-card h3 {
  margin-bottom: 1.25rem;
  font-family: var(--headerFont);
  font-weight: 600;
}

.services-card p {
  color: var(--textColour2);
  font-size: 0.9rem;
}

.services-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spaceLg);
}

/* Services Section Responsive Start */
@media screen and (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    gap: 1.2rem;
  }
}

@media screen and (max-width: 640px) {
  .services-header {
    margin-bottom: var(--spaceMd);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-card {
    min-height: auto;
  }

  .services-btn {
    width: 100%;
    max-width: 16rem;
    text-align: center;
  }
}
/* Services Section Responsive End */
/* Services Section End */

/* Gallery Section Start */
#gallery {
  background-color: var(--bgColour1);
}

.gallery-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--spaceMd);
  margin-bottom: var(--spaceMd);
}

.gallery-heading-wrap {
  max-width: 36rem;
}

.gallery-heading-wrap .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery-heading-wrap h2 {
  margin-bottom: var(--spaceSm);
}

.gallery-intro {
  color: var(--textColour2);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.gallery-arrow {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background-color: transparent;
  color: var(--textColour1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.gallery-arrow-icon {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow-next,
.gallery-arrow-prev:not(.is-disabled) {
  background-color: var(--mainBrandColour);
  border-color: var(--mainBrandColour);
  color: #111;
}

.gallery-arrow.is-disabled {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--textColour1);
  opacity: 0.75;
  cursor: default;
}

.gallery-slider {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: var(--spaceSm);
  transition: transform 0.45s ease;
  will-change: transform;
}

.gallery-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceSm);
}

.gallery-card {
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--bgColour2);
  height: 550px;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 900px) {
  .gallery-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-controls {
    align-self: flex-end;
  }
}

@media screen and (max-width: 769px) {
  .gallery-page {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    aspect-ratio: 4 / 4.4;
  }
}
/* Gallery Section End */

/* Testimonials Section Start */
#testimonials {
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
}

.testimonials-header {
  max-width: 52rem;
  margin: 0 auto var(--spaceLg);
  text-align: center;
}

.testimonials-header .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonials-header h2 {
  margin-bottom: var(--spaceSm);
}

.testimonials-intro {
  color: var(--textColour2);
  font-size: 1.05rem;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceSmmd);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  background-color: #050505;
  border-radius: 1rem;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  margin-bottom: var(--spaceSm);
}

.testimonial-star {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--mainBrandColour);
  flex-shrink: 0;
}

.testimonial-quote {
  margin: 0 0 var(--spaceSmmd);
}

.testimonial-quote p {
  color: var(--textColour2);
}

.testimonial-footer {
  margin-top: auto;
}

.testimonial-name {
  margin-bottom: 0.2rem;
  font-family: var(--headerFont);
  font-weight: 600;
  color: var(--textColour1);
}

.testimonial-location {
  color: var(--textColour2);
  font-size: 0.95rem;
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  margin-top: var(--spaceLg);
  gap: 2rem;
}

.testimonials-btn {
  min-width: 10rem;
  border: 1px solid var(--mainBrandColour);
  border-radius: 0.4rem;
  color: var(--mainBrandColour);
  text-align: center;
  text-decoration: none;
  background-color: transparent;
  font-weight: 500;
}

.testimonials-btn:hover,
.testimonials-btn:focus-visible {
  background-color: rgba(201, 162, 74, 0.08);
}

@media screen and (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header {
    margin-bottom: var(--spaceMd);
  }
}
/* Testimonials Section End */

/* About Section Start */
#about {
  background-color: var(--bgColour1);
}

.about-layout {
  display: grid;
  gap: var(--spaceLg);
  align-items: center;
}

.about-content {
  max-width: 34rem;
}

.about-content .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mainBrandColour);
}

.about-content h2 {
  margin-bottom: var(--spaceSmmd);
}

.about-content p {
  color: var(--textColour2);
  font-size: 1rem;
}

.about-content p + p {
  margin-top: var(--spaceSm);
}

.about-highlight-text strong {
  color: var(--mainBrandColour);
  font-style: italic;
  font-weight: 700;
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spaceSm);
  margin-top: var(--spaceMd);
  padding: 0;
}

.about-feature-card {
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.9rem;
}

.about-feature-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: rgba(201, 162, 74, 0.1);
  border-radius: 0.75rem;
  color: var(--mainBrandColour);
}

.about-feature-icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.about-feature-card h3 {
  margin-bottom: 0.9rem;
  font-family: var(--headerFont);
  font-weight: 600;
}

.about-feature-card p {
  color: var(--textColour2);
  font-size: 0.9rem;
}

.about-image-column {
  position: relative;
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--bgColour2);
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-experience-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.25rem;
  max-width: 17rem;
  padding: 1.5rem;
  background-color: var(--mainBrandColour);
  color: #111;
  border-radius: 0.5rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.about-experience-number {
  margin-bottom: 0.4rem;
  font-family: var(--headerFont);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-text {
  font-weight: 500;
}

/* About Section Responsive Start */
@media screen and (min-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }
}

@media screen and (max-width: 899px) {
  .about-content {
    max-width: 100%;
    order: 2;
  }

  .about-image-column {
    order: 1;
  }

  .about-content h2,
  .about-content p {
    max-width: 100%;
  }

  .about-experience-card {
    left: 1rem;
    bottom: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-experience-card {
    position: static;
    max-width: 100%;
  }
}
/* About Section Responsive End */
/* About Section End */

/* Methodology Section Start */
#methodology {
  background-color: var(--bgColour1);
}

.methodology-header {
  margin-bottom: var(--spaceLg);
  text-align: center;
}

.methodology-header .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.methodology-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceMd);
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.methodology-item {
  position: relative;
  text-align: center;
}

.methodology-number-wrap {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spaceMd);
  border: 1px solid var(--mainBrandColour);
  border-radius: 50%;
  background-color: #1a1a1a;
}

.methodology-number {
  color: var(--mainBrandColour);
  font-family: var(--headerFont);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.methodology-content h3 {
  margin: 0 auto var(--spaceSm);
  font-family: var(--headerFont);
  font-weight: 700;
}

.methodology-content p {
  margin: 0 auto;
  color: var(--textColour2);
  font-size: 0.95rem;
  max-width: 19rem;
}

@media screen and (max-width: 600px) {
  .methodology-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/* Methodology Section End */

/* Local Services Section Start */
#local-services {
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
}

.local-services-header {
  margin-bottom: var(--spaceLg);
  text-align: center;
}

.local-services-header .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.local-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spaceSm);
  margin-bottom: var(--spaceMd);
}

.local-service-card,
.local-services-areas-card {
  background-color: var(--bgColour1);
  border-radius: 1rem;
}

.local-service-card {
  padding: 1.8rem;
  min-height: 16rem;
}

.local-services-areas-card {
  align-items: center;
  padding: 2rem 2.5rem;
}

.local-service-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spaceSm);
  border-radius: 0.5rem;
  background-color: rgba(201, 162, 74, 0.12);
  color: var(--mainBrandColour);
}

.local-service-icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.local-service-card h3,
.local-services-areas-card h3 {
  margin-bottom: var(--spaceSm);
  font-family: var(--headerFont);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.local-service-card p,
.local-services-areas-card p {
  color: var(--textColour2);
  font-size: 1rem;
  line-height: 1.7;
}

.local-services-areas-card h3 {
  margin-bottom: 0.75rem;
}

/* Local Services Section Responsive Start */
@media screen and (max-width: 1023px) {
  .local-services-grid {
    grid-template-columns: 1fr;
  }

  .local-service-card {
    min-height: auto;
  }
}

@media screen and (max-width: 640px) {
  .local-service-card,
  .local-services-areas-card {
    flex-direction: column;
    padding: 1.5rem;
  }
}
/* Local Services Section Responsive End */
/* Local Services Section End */

/* Contact Section Start */
#contact {
  background-color: var(--bgColour1);
}

.contact-layout {
  display: grid;
  gap: var(--spaceLg);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.contact-content {
  max-width: 32rem;
}

.contact-content .sub-heading {
  margin-bottom: var(--spaceSm);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-content h2 {
  margin-bottom: var(--spaceSm);
}

.contact-intro {
  max-width: 26rem;
  margin-bottom: var(--spaceLg);
  color: var(--textColour2);
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon-wrap {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--mainBrandColour);
}

.contact-detail-icon {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

.contact-detail-label {
  margin-bottom: 0.25rem;
  color: var(--textColour2);
  font-size: 1rem;
}

.contact-detail-link {
  color: var(--textColour1);
  font-family: var(--headerFont);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
  color: var(--mainBrandColour);
}

.contact-form-wrap {
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 1.15rem;
  padding: 1rem;
  background-color: #050505;
  border-radius: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-field {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-form label {
  color: var(--textColour1);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.45rem;
  background-color: #1a1a1a;
  color: var(--textColour1);
  font: inherit;
  padding: 0.95rem 1rem;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--textColour2);
}

.contact-btn {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0.45rem;
  color: #111;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0 24px rgba(201, 162, 74, 0.22);
}

/* Contact Section Responsive Start */
@media screen and (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 899px) {
  .contact-form-wrap {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media screen and (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: none;
  }

  .contact-detail-link {
    font-size: 1.1rem;
  }

  .contact-layout {
    padding: 1rem;
  }
}
/* Contact Section Responsive End */
/* Contact Section End */
