/* =========================================================
   GOLDEN TOUCH CLEANING
   EXACT DESKTOP COMPOSITION
========================================================= */

:root {
  --teal: #006b6b;
  --teal-dark: #004d50;
  --teal-deep: #003b3f;
  --teal-light: #e8f5f5;

  --gold: #c7a54a;
  --gold-light: #dfc878;
  --gold-dark: #aa8732;

  --white: #ffffff;
  --off-white: #f5f8f8;

  --text: #263c3d;
  --muted: #718080;

  --border: #dce7e7;

  --shadow: 0 12px 35px rgba(0, 50, 55, 0.1);

  --container: 1180px;

  --transition: 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;

  width: 100%;
  min-width: 100%;

  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;

  width: 100%;
  min-width: 100%;

  overflow-x: hidden;

  font-family: "Montserrat", sans-serif;

  color: var(--text);

  background: var(--white);

  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));

  margin: 0 auto;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding: 72px 0;
}

.section-heading {
  text-align: center;

  max-width: 760px;

  margin: 0 auto 40px;
}

.section-label {
  display: inline-block;

  margin-bottom: 7px;

  color: var(--gold);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 1.8px;
}

.section-label.light {
  color: var(--gold-light);
}

.section-heading h2,
.about-content h2 {
  margin: 0;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 34px;

  line-height: 1.15;

  text-transform: uppercase;
}

.section-heading p {
  margin: 9px 0 0;

  color: var(--muted);

  font-size: 11px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 42px;

  padding: 11px 20px;

  border: 0;
  border-radius: 4px;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.4px;

  text-transform: uppercase;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: white;

  box-shadow: 0 7px 18px rgba(0, 107, 107, 0.18);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-gold {
  background: var(--gold);
  color: white;
}

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

/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  height: 76px;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.97);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);

  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header-inner {
  height: 76px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* LOGO */

.logo {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  flex-shrink: 0;

  color: var(--teal-dark);
}

.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  position: relative;
}

.logo-mark::before {
  content: "";

  position: absolute;

  width: 30px;
  height: 30px;

  border: 2px solid var(--gold);

  border-radius: 60% 40% 60% 40%;

  transform: rotate(45deg);
}

.logo-mark span {
  position: relative;

  z-index: 2;

  color: var(--gold);

  font-size: 19px;
}

.logo-text strong {
  display: block;

  color: var(--teal-dark);

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 1.2px;

  line-height: 1;
}

.logo-text small {
  display: block;

  margin-top: 5px;

  color: var(--gold);

  font-size: 7px;
  font-weight: 800;

  letter-spacing: 2.5px;

  line-height: 1;
}

/* NAV */

.nav {
  display: flex;

  align-items: center;

  gap: 25px;
}

.nav a {
  color: var(--text);

  font-size: 10px;
  font-weight: 700;

  transition: color var(--transition);
}

.nav a:hover {
  color: var(--teal);
}

/* HEADER BUTTON */

.header-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  min-height: 38px;

  padding: 10px 17px;

  border-radius: 4px;

  background: var(--teal);

  color: white;

  font-size: 9px;
  font-weight: 800;

  text-transform: uppercase;

  white-space: nowrap;
}

.header-button span {
  color: var(--gold-light);

  font-size: 15px;

  line-height: 1;
}

/* MENU */

.menu-button {
  display: none;

  width: 40px;
  height: 40px;

  border: 0;

  background: transparent;
}

.menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: var(--teal-dark);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  width: 100%;

  margin-top: 76px;

  overflow: hidden;

  background: white;

  line-height: 0;
}

.hero-image {
  display: block;

  width: 100%;
  height: auto;

  min-height: 0;

  object-fit: cover;
}

/* =========================================================
   SERVICES
========================================================= */

.services-section {
  position: relative;

  background: #f6f9f9;
}

.services-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, transparent, var(--gold), transparent);

  opacity: 0.45;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}

.service-card {
  display: flex;

  flex-direction: column;

  min-width: 0;

  overflow: hidden;

  background: white;

  border: 1px solid var(--border);

  border-radius: 8px;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.045);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 30px rgba(0, 50, 55, 0.12);
}

.service-image {
  position: relative;

  height: 160px;

  overflow: visible;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.service-icon {
  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translate(-50%, 50%);

  width: 49px;
  height: 49px;

  display: grid;

  place-items: center;

  border: 4px solid white;

  border-radius: 50%;

  background: var(--teal);

  color: white;

  font-size: 18px;

  z-index: 5;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.service-content {
  flex: 1;

  display: flex;

  flex-direction: column;

  padding: 32px 18px 18px;
}

.service-content h3 {
  margin: 0 0 9px;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 16px;

  line-height: 1.15;

  text-align: center;

  text-transform: uppercase;
}

.service-content > p {
  min-height: 51px;

  margin: 0 0 11px;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.5;

  text-align: center;
}

.service-content ul {
  margin-bottom: 17px;
}

.service-content li {
  position: relative;

  padding-left: 12px;

  margin-bottom: 5px;

  color: #697979;

  font-size: 8px;

  line-height: 1.35;
}

.service-content li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;
}

.service-content .small-button {
  align-self: center;

  margin-top: auto;
}

/* SMALL BUTTON */

.small-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 32px;

  padding: 8px 15px;

  border-radius: 4px;

  background: var(--teal);

  color: white;

  font-size: 8px;
  font-weight: 800;

  text-transform: uppercase;

  transition:
    background var(--transition),
    transform var(--transition);
}

.small-button:hover {
  background: var(--teal-dark);

  transform: translateY(-1px);
}

/* =========================================================
   WHY
========================================================= */

.why-section {
  position: relative;

  padding: 42px 0;

  background: linear-gradient(120deg, #00484c, #007575);

  color: white;

  overflow: hidden;

  border-radius: 0;
}

.why-section::before,
.why-section::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  border: 1px solid rgba(199, 165, 74, 0.18);

  border-radius: 50%;
}

.why-section::before {
  left: -160px;
  top: -190px;
}

.why-section::after {
  right: -170px;
  bottom: -190px;
}

.why-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    1.35fr
    repeat(4, 1fr);

  gap: 25px;

  align-items: center;
}

.why-title {
  padding-right: 15px;
}

.why-title h2 {
  margin: 0 0 10px;

  color: white;

  font-family: "Playfair Display", serif;

  font-size: 27px;

  line-height: 1.05;

  text-transform: uppercase;
}

.why-title p {
  max-width: 230px;

  margin: 0 0 17px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 8px;

  line-height: 1.5;
}

.why-item {
  min-height: 125px;

  padding-left: 20px;

  border-left: 1px solid rgba(255, 255, 255, 0.25);

  text-align: center;
}

.why-icon {
  width: 43px;
  height: 43px;

  display: grid;

  place-items: center;

  margin: 0 auto 9px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  color: var(--gold-light);

  font-size: 17px;
}

.why-item h3 {
  margin: 0 0 7px;

  color: white;

  font-family: "Playfair Display", serif;

  font-size: 12px;

  line-height: 1.2;

  text-transform: uppercase;
}

.why-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 7px;

  line-height: 1.5;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  background: white;
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 65px;

  align-items: center;
}

.about-image {
  position: relative;

  min-width: 0;
}

.about-image img {
  width: 100%;
  height: 390px;

  object-fit: cover;

  border-radius: 4px;
}

.about-badge {
  position: absolute;

  left: 25px;
  bottom: 20px;

  display: flex;

  align-items: center;

  gap: 9px;

  padding: 10px 13px;

  border-radius: 4px;

  background: rgba(0, 77, 80, 0.95);

  color: white;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.badge-icon {
  color: var(--gold-light);

  font-size: 22px;
}

.about-badge strong {
  display: block;

  color: white;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.5px;
}

.about-badge span {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 6px;

  line-height: 1.35;

  letter-spacing: 0.7px;
}

.about-content h2 {
  margin: 0 0 18px;

  font-size: 32px;
}

.about-content h2 span {
  display: block;

  color: var(--gold);
}

.about-content p {
  max-width: 470px;

  margin: 0 0 12px;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.65;
}

.contact-details {
  display: flex;

  flex-direction: column;

  gap: 7px;

  margin: 20px 0;
}

.contact-details a,
.area-line {
  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--teal);

  font-size: 9px;

  font-weight: 700;
}

.contact-details a span,
.area-line span {
  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--teal-light);

  color: var(--teal);

  font-size: 11px;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
  background: #f6f9f9;
}

.gallery {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.gallery-card {
  position: relative;

  height: auto;

  overflow: hidden;

  border-radius: 5px;

  background: #ddd;
}

.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card .before,
.gallery-card .after {
  position: absolute;

  bottom: 8px;

  padding: 4px 7px;

  border-radius: 3px;

  background: rgba(0, 61, 64, 0.92);

  color: white;

  font-size: 6px;
  font-weight: 800;

  letter-spacing: 0.4px;
}

.gallery-card .before {
  left: 8px;
}

.gallery-card .after {
  right: 8px;

  background: rgba(199, 165, 74, 0.95);
}

.gallery-button {
  margin-top: 25px;

  text-align: center;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
  background: white;

  padding-top: 45px;
  padding-bottom: 50px;
}

.reviews-box {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border: 1px solid #e3e9e9;

  border-radius: 5px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.035);
}

.review-card {
  position: relative;

  min-height: 170px;

  padding: 25px 30px;

  text-align: center;
}

.review-card + .review-card {
  border-left: 1px solid #e2e7e7;
}

.stars {
  margin-bottom: 12px;

  color: var(--gold);

  font-size: 13px;

  letter-spacing: 2px;
}

.review-card p {
  margin: 0 auto 13px;

  max-width: 300px;

  color: #687777;

  font-size: 8px;

  line-height: 1.65;

  font-style: italic;
}

.review-card strong {
  display: block;

  color: var(--teal-dark);

  font-size: 8px;

  font-weight: 800;
}

.reviews-button-wrapper {
  display: flex;

  justify-content: center;

  margin-top: 22px;
}

.reviews-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 35px;

  padding: 8px 18px;

  border-radius: 4px;

  background: var(--teal);

  color: white;

  font-size: 8px;
  font-weight: 800;

  text-transform: uppercase;

  transition:
    background var(--transition),
    transform var(--transition);
}

.reviews-button:hover {
  background: var(--teal-dark);

  transform: translateY(-2px);
}

.reviews-button span {
  color: #4285f4;

  font-size: 13px;

  font-weight: 900;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  position: relative;

  padding: 50px 0;

  /* background: linear-gradient(120deg, #003c40, #006b6b); */

  overflow: hidden;
}

.contact-section::before {
  content: "";

  position: absolute;

  left: -80px;
  bottom: -100px;

  width: 350px;
  height: 200px;

  border: 1px solid rgba(199, 165, 74, 0.2);

  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.18fr 0.82fr;

  gap: 50px;

  align-items: center;
}

.contact-info h2 {
  margin: 0 0 15px;

  color: white;

  font-family: "Playfair Display", serif;

  font-size: 34px;

  line-height: 1.05;

  text-transform: uppercase;
}

.contact-info h2 span {
  display: block;

  color: var(--gold-light);
}

.contact-info > p {
  max-width: 390px;

  margin: 0 0 24px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 9px;

  line-height: 1.6;
}

.contact-list {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.contact-list > a,
.contact-list > div {
  display: flex;

  align-items: center;

  gap: 10px;

  color: white;

  font-size: 9px;
}

.contact-icon {
  flex: 0 0 33px;

  width: 33px;
  height: 33px;

  display: grid;

  place-items: center;

  /* border: 1px solid rgba(255, 255, 255, 0.22); */

  border-radius: 50%;

  color: var(--gold-light);

  /* background: rgba(255, 255, 255, 0.08); */

  font-size: 13px;
}

.contact-list small {
  display: block;

  margin-bottom: 2px;

  color: var(--gold-light);

  font-size: 6px;
  font-weight: 800;

  letter-spacing: 1px;
}

/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {
  padding: 25px;
  margin-bottom: 150px;
      max-width: 550px;

  border-radius: 7px;

  background: white;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-form-wrapper h3 {
  margin: 0 0 16px;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 21px;

  line-height: 1;
}

.form-section-title {
  margin: 13px 0 7px;

  padding-bottom: 4px;

  border-bottom: 1px solid var(--border);

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.25;
}

.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;

  margin-bottom: 4px;

  color: var(--teal-dark);

  font-size: 7px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 8px 9px;

  border: 1px solid var(--border);

  border-radius: 3px;

  outline: none;

  background: #fbfdfd;

  color: var(--text);

  font-size: 8px;

  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);

  box-shadow: 0 0 0 2px rgba(0, 107, 107, 0.08);
}

.form-group textarea {
  min-height: 65px;

  resize: vertical;
}

.form-group select {
  appearance: none;

  cursor: pointer;

  padding-right: 25px;

  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);

  background-position:
    calc(100% - 12px) 50%,
    calc(100% - 8px) 50%;

  background-size:
    4px 4px,
    4px 4px;

  background-repeat: no-repeat;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.form-submit {
  width: 100%;

  margin-top: 4px;

  min-height: 36px;

  border: 0;

  font-size: 8px;
}

.form-note {
  margin: 7px 0 0;

  color: var(--muted);

  font-size: 7px;

  text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 38px 0 0;

  /* background: #002f32; */

  color: white;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.45fr
    1fr
    1fr
    1.25fr;

  gap: 35px;

  padding-bottom: 30px;
}

.footer-logo {
  margin-bottom: 12px;

  color: white;
}

.footer-logo .logo-text strong {
  color: white;
}

.footer-brand p {
  max-width: 250px;

  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-size: 8px;

  line-height: 1.55;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 7px;
}

.footer-column h3 {
  margin: 0 0 5px;

  color: var(--gold-light);

  font-size: 8px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.6);

  font-size: 7px;

  transition: color var(--transition);
}

.footer-column a:hover {
  color: white;
}

.socials {
  display: flex;

  margin-top: 4px;
}

.socials a {
  width: 25px;
  height: 25px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  color: white !important;

  font-size: 10px !important;
}

.footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 14px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 7px;
}

.footer-bottom div {
  display: flex;

  gap: 15px;
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
  position: fixed;

  right: 18px;
  bottom: 18px;

  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  background: var(--gold);

  color: white;

  font-size: 18px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: all var(--transition);

  z-index: 2000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* =========================================================
   SERVICE MODAL
========================================================= */

.service-modal {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 20px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 47, 50, 0.75);

  backdrop-filter: blur(5px);
}

.service-modal-card {
  position: relative;

  width: min(560px, 100%);

  max-height: 90vh;

  overflow-y: auto;

  padding: 35px;

  border-radius: 10px;

  background: white;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

  transform: translateY(20px) scale(0.97);

  transition: transform 0.3s ease;
}

.service-modal.active .service-modal-card {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;

  top: 12px;
  right: 13px;

  width: 34px;
  height: 34px;

  display: grid;

  place-items: center;

  border: 0;

  border-radius: 50%;

  background: var(--teal-light);

  color: var(--teal-dark);

  font-size: 25px;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.service-modal-close:hover {
  background: var(--teal);

  color: white;

  transform: rotate(90deg);
}

.service-modal-icon {
  width: 55px;
  height: 55px;

  display: grid;

  place-items: center;

  margin-bottom: 15px;

  border-radius: 50%;

  background: var(--gold);

  color: white;

  font-size: 23px;
}

.service-modal-content h2 {
  margin: 0 0 12px;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 31px;

  line-height: 1.1;

  text-transform: uppercase;
}

.service-modal-content > p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 11px;

  line-height: 1.65;
}

.service-modal-content ul {
  margin: 0 0 20px;
}

.service-modal-content li {
  position: relative;

  padding-left: 18px;

  margin-bottom: 7px;

  color: var(--text);

  font-size: 9px;

  line-height: 1.45;
}

.service-modal-content li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: var(--gold);

  font-weight: 800;
}

.service-modal-actions {
  padding-top: 4px;
}

/* =========================================================
   DESKTOP / MOBILE:
   KEEP THE EXACT DESKTOP COMPOSITION
========================================================= */

@media (max-width: 760px) {
  html {
    min-width: 1180px;
  }

  body {
    min-width: 1180px;
  }

  .container {
    width: 1140px;
    max-width: 1140px;
  }

  .header {
    width: 1180px;
  }

  .hero {
    width: 1180px;
  }

  .services-section,
  .why-section,
  .about-section,
  .gallery-section,
  .reviews-section,
  .contact-section,
  .footer {
    width: 1180px;
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns:
      1.35fr
      repeat(4, minmax(0, 1fr));
  }

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

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

  .reviews-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  }

  .nav {
    display: flex;
  }

  .header-button {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }
}

/* --- */

/* =========================================================
   GOLDEN TOUCH — ABOUT PAGE
   ========================================================= */

.about-page {
  background: #f8f6f1;
  color: #1d1d1b;
}

/* =========================================================
   ABOUT HERO
   ========================================================= */

.about-page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #171714;
}

.about-page-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 13, 0.88) 0%,
      rgba(15, 15, 13, 0.68) 42%,
      rgba(15, 15, 13, 0.28) 75%,
      rgba(15, 15, 13, 0.2) 100%
    ),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=90")
      center / cover no-repeat;

  z-index: 0;
}

.about-page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18),
    transparent 35%,
    rgba(0, 0, 0, 0.28)
  );
}

.about-page-hero-content {
  position: relative;
  z-index: 2;

  max-width: 720px;
  padding: 150px 0 140px;
  color: #fff;
}

.about-page-hero-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  color: #d6ad52;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.about-page-hero-content h1 {
  margin: 0;

  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.about-page-hero-content h1 span {
  display: block;
  color: #d6ad52;
}

.about-page-divider {
  display: flex;
  align-items: center;
  gap: 16px;

  margin: 32px 0;

  color: #d6ad52;
  font-size: 22px;
}

.about-page-divider::before,
.about-page-divider::after {
  content: "";
  display: block;

  width: 55px;
  height: 1px;

  background: rgba(214, 173, 82, 0.6);
}

.about-page-hero-content p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, 0.84);

  font-size: 18px;
  line-height: 1.8;
}

/* =========================================================
   ABOUT VALUES
   ========================================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;

  padding: 90px 0 110px;
}

.about-section-title {
  padding-top: 100px;
}

.about-section-title .section-label {
  display: inline-block;

  color: #b58a32;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.value-card {
  position: relative;

  min-height: 280px;
  padding: 38px 30px;

  background: #fff;

  border: 1px solid rgba(30, 30, 25, 0.08);
  border-radius: 3px;

  box-shadow: 0 14px 40px rgba(25, 25, 20, 0.055);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-7px);

  border-color: rgba(181, 138, 50, 0.35);

  box-shadow: 0 22px 50px rgba(25, 25, 20, 0.1);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  margin-bottom: 27px;

  border-radius: 50%;

  background: #f7f0df;
  color: #b58a32;

  font-size: 22px;
  font-weight: 700;
}

.value-card h3 {
  margin: 0 0 18px;

  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.value-card p {
  margin: 0;

  color: #6e6c65;

  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   OUR STORY
   ========================================================= */

.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  margin: 0 0 120px;

  background: #fff;

  box-shadow: 0 20px 60px rgba(25, 25, 20, 0.08);
}

.story-content {
  padding: 70px 70px;
}

.story-content .section-label,
.team-content .section-label {
  display: inline-block;

  margin-bottom: 22px;

  color: #b58a32;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.story-content h2,
.team-content h2 {
  margin: 0 0 28px;

  font-family: "Playfair Display", serif;

  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 700;
}

.story-content h2 span,
.team-content h2 span {
  display: block;
  color: #b58a32;
}

.story-content p {
  margin: 0 0 20px;

  color: #66645e;

  font-size: 15px;
  line-height: 1.85;
}

.story-image {
  min-height: 520px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.035);
}

/* =========================================================
   TEAM
   ========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;
  gap: 90px;

  padding: 0 0 130px;
}

.team-image {
  overflow: hidden;

  aspect-ratio: 0.9;
}

.team-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.team-image:hover img {
  transform: scale(1.035);
}

.team-content {
  max-width: 650px;
}

.team-content > p {
  margin: 0 0 30px;

  color: #66645e;

  font-size: 16px;
  line-height: 1.85;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.team-list li {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #36352f;

  font-size: 14px;
  line-height: 1.5;
}

.team-list li > span {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: #f5edda;
  color: #b58a32;

  font-size: 13px;
  font-weight: 800;
}

.team-message {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-top: 38px;
  padding: 17px 22px;

  background: #f7f3e9;

  border-left: 3px solid #c49a43;

  color: #68655d;

  font-size: 14px;
}

.team-message strong {
  color: #27261f;
}

.team-message span {
  margin-left: 7px;
  color: #c49a43;
  font-size: 18px;
}

/* =========================================================
   ABOUT CTA
   ========================================================= */

.about-cta {
  position: relative;
  overflow: hidden;

  background: linear-gradient(100deg, #171713 0%, #222018 100%);

  color: #fff;
}

.about-cta::before {
  content: "✦";

  position: absolute;
  right: 7%;
  top: 50%;

  transform: translateY(-50%);

  color: rgba(214, 173, 82, 0.08);

  font-size: 260px;
  line-height: 1;
}

.about-cta-inner {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 60px;

  padding: 90px 0;
}

.about-cta-inner .section-label.light {
  display: inline-block;

  margin-bottom: 18px;

  color: #d6ad52;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.about-cta-inner h2 {
  margin: 0;

  font-family: "Playfair Display", serif;

  font-size: clamp(35px, 4vw, 58px);
  line-height: 1.03;
}

.about-cta-inner h2 span {
  display: block;
  color: #d6ad52;
}

.about-cta-inner p {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 15px;
}

.about-cta-inner .btn {
  white-space: nowrap;
}

.about-cta-contact {
  grid-column: 1 / -1;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta-contact a,
.about-cta-contact span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;
  text-decoration: none;

  transition: color 0.25s ease;
}

.about-cta-contact a:hover {
  color: #d6ad52;
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 50px 20px;

  background:
    radial-gradient(circle at 50% 0%, rgba(202, 163, 76, 0.1), transparent 45%),
    #f7f5ef;
}

.thank-you-card {
  width: min(100%, 620px);

  padding: 70px 60px;

  text-align: center;

  background: #fff;

  border: 1px solid rgba(30, 30, 25, 0.08);

  box-shadow: 0 30px 90px rgba(25, 25, 20, 0.1);
}

.thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 82px;
  height: 82px;

  margin: 0 auto 30px;

  border-radius: 50%;

  background: #f5edda;
  color: #b58a32;

  font-size: 34px;
  font-weight: 600;

  box-shadow: 0 0 0 10px rgba(196, 154, 67, 0.07);
}

.thank-you-card h1 {
  margin: 0 0 18px;

  font-family: "Playfair Display", serif;

  color: #20201c;

  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.thank-you-card p {
  max-width: 480px;

  margin: 0 auto 14px;

  color: #6c6a63;

  font-size: 15px;
  line-height: 1.75;
}

.thank-you-card .btn {
  display: inline-flex;

  margin-top: 25px;
}

/* =========================================================
   BUTTON — if not already defined
   ========================================================= */

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 16px;

  border: 1px solid #c49a43;

  background: #c49a43;
  color: #171713;

  font-family: "Montserrat", sans-serif;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.btn-gold:hover {
  background: #e0bd70;
  border-color: #e0bd70;

  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 420px;
    order: -1;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-image {
    max-width: 700px;
  }

  .about-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-cta-contact {
    grid-column: auto;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {
  .about-page-hero {
    min-height: 620px;
  }

  .about-page-hero-image {
    background:
      linear-gradient(90deg, rgba(15, 15, 13, 0.82), rgba(15, 15, 13, 0.5)),
      url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=85")
        center / cover no-repeat;
  }

  .about-page-hero-content {
    padding: 110px 0 90px;
  }

  .about-page-hero-content h1 {
    font-size: 46px;
  }

  .about-page-hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-section-title {
    padding-top: 70px;
  }

  .values-grid {
    grid-template-columns: 1fr;

    padding: 50px 0 80px;
  }

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

  .story-card {
    margin-bottom: 80px;
  }

  .story-content {
    padding: 45px 28px;
  }

  .story-content h2,
  .team-content h2 {
    font-size: 36px;
  }

  .story-image {
    min-height: 300px;
  }

  .team-grid {
    padding-bottom: 80px;
  }

  .team-image {
    aspect-ratio: 1 / 1;
  }

  .team-content > p {
    font-size: 15px;
  }

  .about-cta-inner {
    padding: 70px 0;
  }

  .about-cta-inner h2 {
    font-size: 38px;
  }

  .about-cta-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .thank-you {
    padding: 25px 15px;
  }

  .thank-you-card {
    padding: 55px 25px;
  }

  .thank-you-card h1 {
    font-size: 48px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .about-page-hero-content h1 {
    font-size: 40px;
  }

  .value-card {
    padding: 30px 24px;
  }

  .story-content {
    padding: 40px 22px;
  }

  .story-content h2,
  .team-content h2 {
    font-size: 32px;
  }

  .about-cta-inner h2 {
    font-size: 34px;
  }

  .thank-you-card {
    padding: 45px 20px;
  }
}

/* ---------- new ---------- */

/* =====================================================
   WHY CHOOSE US — ROUNDED GREEN CARD
===================================================== */

.why-section {
  background: #ffffff;
  padding: 22px 0;
}

.why-section-card {
  position: relative;
  overflow: hidden;

  background: #004f4d;
  border-radius: 26px;

  padding: 28px 34px;

  box-shadow: 0 8px 25px rgba(0, 60, 58, 0.1);
}

/* subtle gold corner decoration */

.why-section-card::before,
.why-section-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;

  border: 1px solid rgba(216, 171, 74, 0.45);
  border-radius: 50%;

  pointer-events: none;
}

.why-section-card::before {
  left: -75px;
  top: -75px;
}

.why-section-card::after {
  right: -75px;
  bottom: -75px;
}

.why-grid {
  position: relative;
  z-index: 2;
}

/* =====================================================
   ABOUT FLOWER
===================================================== */

.about-image {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 150px;
  gap: 30px;
  align-items: center;
}

.about-flower {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.about-flower img {
  width: 260px;
  max-width: none;
  height: auto;
  display: block;
  transform: translateX(-150px);
}

.services-section .section-heading {
  max-width: 100%;
}

.services-section .section-heading h2 {
  margin-left: 0;
  margin-right: 0;
}

.services-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   HEADER LOGO
===================================================== */

.logo-image-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: block;

  width: 205px;
  height: 80px;

  object-fit: contain;
  object-position: left center;
}

.header .nav a {
  font-size: 15px;
  font-weight: 600;
}

.header-button {
  font-size: 13px;
  font-weight: 700;
}

/* =====================================================
   CONTACT FORM — COMPACT VERSION
===================================================== */

/* .contact-form-wrapper {
    padding: 22px;
}

.contact-form-wrapper form {
    gap: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper .form-section-title {
    margin-top: 5px;
    margin-bottom: 3px;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
}

.contact-form-wrapper .form-group {
    margin-bottom: 4px;
}

.contact-form-wrapper input,
.contact-form-wrapper select {
    height: 36px;
    min-height: 36px;

    padding: 7px 10px;

    font-size: 12px;
}

.contact-form-wrapper textarea {
    min-height: 58px;
    height: 58px;

    padding: 8px 10px;

    font-size: 12px;
    resize: vertical;
}

.contact-form-wrapper label {
    font-size: 10px;
    margin-bottom: 2px;
}

.contact-form-wrapper .form-row {
    gap: 8px;
}

.contact-form-wrapper .form-submit {
    margin-top: 7px;
    min-height: 38px;
}

.contact-form-wrapper .form-note {
    margin-top: 5px;
    font-size: 10px;
} */

/* =====================================================
   CONTACT FORM — COMPACT + ALIGNED
   НЕ ЗМІНЮЄ ПОРЯДОК ПОЛІВ
===================================================== */

.contact-form-wrapper {
  padding: 22px 30px;
}

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

/* TITLE */

.contact-form-wrapper h3 {
  margin: 0 0 16px;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 21px;
  line-height: 1;
}

/* QUESTION TITLES */

.contact-form-wrapper .form-section-title {
  margin: 7px 0 4px;

  padding-bottom: 4px;

  border-bottom: 1px solid var(--border);

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.25;
}

/* FORM GROUP */

.contact-form-wrapper .form-group {
  width: 100%;

  margin-bottom: 7px;
}

/* LABEL */

.contact-form-wrapper label {
  display: block;

  margin-bottom: 3px;

  color: var(--teal-dark);

  font-size: 9px;
  font-weight: 700;

  line-height: 1.2;
}

/* INPUT + SELECT */

.contact-form-wrapper input,
.contact-form-wrapper select {
  width: 100%;

  height: 38px;
  min-height: 38px;

  padding: 8px 10px;

  border: 1px solid var(--border);
  border-radius: 4px;

  background: #fbfdfd;

  color: var(--text);

  font-size: 11px;

  outline: none;
}

/* TEXTAREA */

.contact-form-wrapper textarea {
  width: 100%;

  height: 65px;
  min-height: 65px;

  padding: 8px 10px;

  border: 1px solid var(--border);
  border-radius: 4px;

  background: #fbfdfd;

  color: var(--text);

  font-size: 11px;

  line-height: 1.4;

  resize: vertical;

  outline: none;
}

/* FOCUS */

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  border-color: var(--teal);

  box-shadow: 0 0 0 2px rgba(0, 107, 107, 0.08);
}

/* SELECT ARROW */

.contact-form-wrapper select {
  appearance: none;

  cursor: pointer;

  padding-right: 28px;

  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);

  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 9px) 50%;

  background-size:
    4px 4px,
    4px 4px;

  background-repeat: no-repeat;
}

/* BEDROOMS / BATHROOMS
   залишаємо на своїх місцях */

.contact-form-wrapper .form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  width: 100%;
}

/* щоб обидва поля були абсолютно однакові */

.contact-form-wrapper .form-row .form-group {
  width: 100%;
  min-width: 0;

  margin-bottom: 7px;
}

/* BUTTON */

.contact-form-wrapper .form-submit {
  width: 100%;

  margin-top: 6px;

  min-height: 38px;

  font-size: 9px;
}

/* NOTE */

.contact-form-wrapper .form-note {
  margin: 5px 0 0;

  color: #465555;

  font-size: 9px;

  line-height: 1.4;

  text-align: center;
}

/* =====================================================
   SERVICE MODAL LOGO
===================================================== */

.service-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 0;

  width: 190px;
  height: 70px;

  margin: 0 auto 12px;
}

.modal-logo {
  width: 180px;
  height: 64px;

  object-fit: contain;
}

/* =====================================================
   TEXT CONTRAST
===================================================== */

body {
  color: #172525;
}

p,
li {
  color: #263535;
}

.service-content p,
.service-content li {
  color: #263535;
}

.about-content p {
  color: #263535;
}

.why-item p {
  color: rgba(255, 255, 255, 0.88);
}

.review-card p {
  color: #202d2d;
}

.form-note {
  color: #465555;
}

.service-content h3 {
  color: #123f3d;
  font-weight: 800;
}

.service-content p {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.service-content li {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

.service-modal-content h2 {
  color: #123f3d;
  font-weight: 800;
}

.service-modal-content p,
.service-modal-content li {
  color: #202d2d;
  font-weight: 500;
}

.service-modal-content p {
  font-size: 15px;
  line-height: 1.6;
}

.service-modal-content li {
  font-size: 13px;
  line-height: 1.55;
}

/* =====================================================
   ABOUT CTA — GREEN INSTEAD OF BROWN
===================================================== */

.about-cta {
  background: #004f4d !important;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-cta::before,
.about-cta::after {
  content: "";
  position: absolute;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(216, 171, 74, 0.35);
  border-radius: 50%;

  pointer-events: none;
}

.about-cta::before {
  left: -100px;
  top: -100px;
}

.about-cta::after {
  right: -100px;
  bottom: -100px;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
}

.about-cta h2,
.about-cta p {
  color: #ffffff;
}

.about-cta h2 span {
  color: #d8ab4a;
}

.about-cta {
  background: #ffffff;
  padding: 24px 0;
}

.about-cta-card {
  position: relative;
  overflow: hidden;

  background: #004f4d;

  border-radius: 26px;

  padding: 38px 42px;
}

.about-cta-inner {
  position: relative;
  z-index: 2;
}

/* =====================================================
   QUOTE FORM — 2 FIELDS PER ROW
===================================================== */

.quote-form {
  width: 100%;
}

.quote-form h3 {
  margin: 0 0 14px;

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 21px;
  line-height: 1;
}

.quote-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  column-gap: 16px;
  row-gap: 8px;
}

.quote-field {
  min-width: 0;
}

.quote-field.quote-full {
  grid-column: 1 / -1;
}

.quote-field .form-section-title {
  min-height: 26px;

  display: flex;
  align-items: flex-end;

  margin: 0 0 5px;

  padding-bottom: 4px;

  border-bottom: 1px solid var(--border);

  color: var(--teal-dark);

  font-family: "Playfair Display", serif;

  font-size: 10px;
  font-weight: 700;

  line-height: 1.2;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  display: block;

  width: 100%;

  border: 1px solid var(--border);
  border-radius: 4px;

  background: #fbfdfd;

  color: var(--text);

  outline: none;
}

.quote-field input,
.quote-field select {
  height: 34px;

  padding: 6px 10px;

  font-size: 11px;
}

.quote-field textarea {
  height: 55px;
  min-height: 55px;

  padding: 7px 10px;

  font-size: 11px;

  resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--teal);

  box-shadow: 0 0 0 2px rgba(0, 107, 107, 0.08);
}

.quote-field select {
  appearance: none;

  cursor: pointer;

  padding-right: 27px;

  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);

  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 9px) 50%;

  background-size:
    4px 4px,
    4px 4px;

  background-repeat: no-repeat;
}

.quote-form .form-submit {
  width: 100%;

  margin-top: 10px;

  min-height: 37px;

  font-size: 9px;
}

.quote-form .form-note {
  margin: 5px 0 0;

  color: #465555;

  font-size: 9px;

  text-align: center;
}

#serviceModalIcon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}




/*  -------------- new --------------- */

/* =====================================================
   SMALL TEXT — SLIGHTLY BIGGER
===================================================== */

.service-content li {
  font-size: 12px;
}

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

.why-item p {
  font-size: 8px;
}

.review-card p {
  font-size: 9px;
}

.contact-list > a,
.contact-list > div {
  font-size: 10px;
}

.contact-info > p {
  font-size: 10px;
}

.contact-details a,
.area-line {
  font-size: 10px;
}

.footer-brand p {
  font-size: 9px;
}

.footer-column a,
.footer-column span {
  font-size: 8px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 8px;
}

.form-group label {
  font-size: 8px;
}

.form-note {
  font-size: 8px;
}




















html,
body {
  overflow-x: clip;
}

.about-section {
  overflow: hidden;
}
















.contact-footer {
  position: relative;
  width: 100%;

  background-image: url("./assets/ere.png");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;

  color: white;
}

.contact-section {
  position: relative;
  padding: 50px 0;
  background: transparent;
}

.footer {
  padding: 38px 0 0;
  background: transparent;
  color: white;
}

@media (max-width: 760px) {
  .contact-footer {
    width: 1180px;
    min-width: 1180px;

    /* НЕ auto 100% */
    background-size: cover;

    /* показуємо лівішу частину desktop-фону */
    background-position: left center;
  }

  .contact-section,
  .footer {
    width: 100%;
  }
}




















html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}