:root {
  --teal: #3e6d76;
  --teal-dark: #325a62;
  --light-teal: #4d7c8a;
  --gold: #c5a02d;
  --gold-hover: #a88624;
  --yellow: #D4AF37;
  --cream: #faf9f6;
  --cream-light: #fffdf9;
  --white: #ffffff;
  --dark: #1e292b;
  --dark-new: #2d3436;
  --dark-soft: #2a383b;
  --muted: #5a6a6d;
  --border: rgba(30, 41, 43, 0.12);
  --trust-bg: #eef1f2;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --container: 72rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 20px 50px rgba(30, 41, 43, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-new);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.btn.is-loading,
.contact-btn.is-loading,
.quote-btn.is-loading,
.btn-primary.is-loading {
  pointer-events: none;
  opacity: 0.9;
}

.btn-spinner {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-btn-spin 0.65s linear infinite;
  vertical-align: middle;
}

@keyframes form-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-inline-feedback {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.form-inline-feedback--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-inline-feedback--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

#orderForm .form-inline-feedback {
  margin-top: 1rem;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
}

/* Top bar */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  min-height: 2.25rem;
  padding-block: 0.35rem;
}

.top-bar svg {
  width: 14px;
  height: 14px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-row a {
  display: flex;
  align-items: center;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--yellow);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-contact a:hover {
  text-decoration: none;
  color: #D4AF37;
}

.sep {
  opacity: 0.4;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  /* background: var(--white); */
  background: #fffdf9;
  /* border-bottom: 1px solid var(--border); */
  box-shadow: 0 2px 24px rgba(45, 52, 54, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem 0.9rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
 max-width: 15%;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  /* background: var(--teal); */
  background-color: #4d7c8a;
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-text__main {
  line-height: normal;
  font-size: 17px;
}

.brand-text__sub {
  color: #4d7c8a;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
      max-width: 45%;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  position: relative;
}

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

.nav-list a::after {
  content: '';
  position: absolute;
  display: none;
  bottom: -7px;
  left: 0px;
  width: 100%;
  background-color: #D4AF37;
  height: 2px;
}

.nav-list a:hover::after {
  display: block;
}

.site-header .btn-gold {
  color: #2D3436;
  padding: 10px 20px;
  font-size: 13.5px;
  border-radius: 10px;
      max-width: 40%;
}

.site-header .btn-gold svg {
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold {
  background: var(--yellow);
  color: var(--dark);
  border-radius: 10px;
  font-size: 14px;
}

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

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

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

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

.btn-block {
  width: 100%;
  padding-block: 0.85rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-icon {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .main-nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    justify-content: flex-start;
  }

  .header-inner .btn-gold {
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .header-inner .btn-gold {
    width: 100%;
    justify-content: center;
  }
}

/* Hero */
.hero {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  /* background: var(--cream); */
  background-image: url('../images/woman-scrubs-writing-book 1.jpg');
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

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

.hero-title {
  /* font-size: clamp(2rem, 4.5vw, 3rem); */
  font-size: 54px;
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-accent {
  display: block;
  font-style: italic;
  color: var(--yellow);
  font-weight: 600;
}

@media (min-width: 640px) {
  .hero-accent {
    display: inline;
  }
}

.hero-lead {
  margin: 0 0 0.85rem;
  color: #ffffffbf;
  font-size: 1rem;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-actions .btn {
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 14px;
}

.hero-actions .btn.btn-link {
  padding: 0px;
  font-size: 14px;
  color: var(--white);
}

.hero-actions .btn.btn-link:hover {
  text-decoration: underline;
}

.hero-actions .btn svg {
  width: 16px;
  height: 16px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  padding-left: 20px;
}

.hero-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--yellow);
}

.hero-trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(62, 109, 118, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}

.hero-trust-item strong {
  display: block;
  font-size: 28px;
  font-family: 'Playfair Display';
  color: var(--white);
}

.hero-trust-item span:last-child {
  font-size: 11px;
  font-weight: normal;
  color: #ffffff99;
  text-transform: uppercase;
  letter-spacing: 1.32px;
}

/* Hero form */
.hero-form-card {
  /* background: var(--teal); */
  background: var(--light-teal);
  color: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card-subtitle {
  color: var(--yellow);
  font-size: 11px;
  text-transform: uppercase;
}

.form-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0;
}

.price-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.price-form input,
.price-form select,
.price-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #2d343680 !important;
  background: var(--white);
}

.price-form input::placeholder {
  color: #2d343680;
  font-size: 13.5px;
}

.price-form .btn-gold {
  margin-top: 0.35rem;
}

/* Trust strip */
.trust-strip {
  /* background: var(--trust-bg); */
  /* border-block: 1px solid var(--border); */
  padding-block: 1.25rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.trust-ico {
  color: var(--teal);
  display: flex;
}

@media (max-width: 720px) {
  .trust-row {
    justify-content: flex-start;
  }
}

/* Sections */
.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-title {
  /* font-size: clamp(1.65rem, 3vw, 2.25rem); */
  font-size: 44px;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
  font-weight: 600;
}

.section-title--center {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-title--light {
  color: var(--white);
}

.section-title--light em {
  color: var(--yellow);
}

.section-lead {
  margin: 0 0 1.75rem;
  font-size: 15px;
  color: var(--muted);
  max-width: 100%;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

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

.about-media {
  position: relative;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.review-card {
  /* background: var(--white); */
  background: #fffdf9;
  /* padding: 1rem 1.15rem; */
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 17rem;
}

.review-card--overlap {
  position: absolute;
  bottom: -0.5rem;
  right: 1rem;
}

@media (max-width: 900px) {
  .review-card--overlap {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-left: auto;
    margin-right: 0;
  }
}

.review-stars {
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.review-text {
  margin: 0 0 0.5rem;
  font-size: 13px;
  font-weight: 500;
  /* color: var(--dark); */
  color: rgba(45, 52, 54, 0.8);
}

.review-name {
  margin: 0;
  font-size: 11px;
  color: #4d7c8a;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 600;
}

.mini-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .mini-features {
    grid-template-columns: 1fr;
  }
}

.mini-features li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 10px;
  /* background: var(--white); */
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mini-ico {
  flex-shrink: 0;
  display: flex;
  color: var(--yellow);
}

.mini-features strong {
  display: block;
  font-size: 13.5px;
  margin-bottom: -5px;
}

.mini-features span:last-child {
  font-size: 12px;
  color: #2d343699;
}

/* Teal features */
.features-teal {
  background: var(--light-teal);
  color: var(--white);
}

.features-teal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-weight: 600;
}

.features-teal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.features-teal-grid .feat-col:not(:last-child) {
  border-right: 1px solid #5f8995;
  padding-right: 20px;
}

@media (max-width: 900px) {
  .features-teal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .features-teal-grid {
    grid-template-columns: 1fr;
  }
}

.feat-col h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 15px;
}

.feat-col p {
  margin: 0;
  font-size: 13.5px;
  color: var(--cream-light);
  line-height: 1.55;
}

/* .feat-ico-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
} */

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.service-card--featured {
  grid-column: span 2;
  background: var(--dark);
  color: var(--white);
  border: none;
  background-image: url('../images/Featured-Service.jpg');
  background-size: cover;
  background-position: center center;
}

.service-card--featured .service-more {
  color: var(--yellow);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.8);
}

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

  .service-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  /* background: var(--white); */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(62, 109, 118, 0.25);
}

.service-ico {
  margin-bottom: 1rem;
  color: var(--yellow);
  display: flex;
  justify-content: space-between;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--dark-new);
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0 0 1rem;
  font-size: 13px;
  font-weight: 600;
  color: #2d3436a6;
  flex: 1;
}

.service-more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--light-teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid #2d34361a;
  padding-top: 20px;
}

.service-more:hover {
  text-decoration: underline;
}

/* Process */
.process {
  /* background: var(--dark); */
  background-image: url('../images/Section.jpg');
  background-size: cover;
  background-position: center center;
  color: rgba(255, 255, 255, 0.9);
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: end;
}

@media (max-width: 768px) {
  .process-head {
    grid-template-columns: 1fr;
  }
}

.process-intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  /* padding: 1.35rem 1.15rem; */
  padding: 30px;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--yellow);
  margin-top: -20px;
  line-height: normal;
}

.step-card h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.step-card p {
  margin: 0;
  font-size: 13.5px;
  /* color: rgba(255, 255, 255, 0.7); */
  color: #fffdf9cc;
  line-height: 1.5;
}

.process-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--light-teal);
  /* padding: 1.15rem 1.5rem; */
  padding: 25px;
  border-radius: var(--radius-lg);
}

.process-banner p {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

/* Shoulder section */
.shoulder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

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

.shoulder-media {
  position: relative;
}

.shoulder-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shoulder-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 6;
}

.review-card--shoulder {
  position: absolute;
  /* bottom: 1rem; */
  bottom: -2rem;
  /* left: 1rem; */
  right: -2rem;
  max-width: 16rem;
}

@media (max-width: 900px) {
  .review-card--shoulder {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -2.5rem;
  }
}

.checklist {
  list-style: none;
  margin: 1.75rem 0 1.75rem;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--muted);
}

.check-ico {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--yellow);
}

/* Final CTA */
.final-cta-wrap {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.final-cta {
  background: var(--dark-new);
  color: var(--white);
  border-radius: var(--radius-lg);
  /* padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem); */
  padding: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.final-cta-copy {
  width: 65%;
}

.final-cta-copy h2 {
  /* font-size: clamp(1.35rem, 2.5vw, 1.75rem); */
  font-size: 36px;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.final-cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 50ch;
  font-size: 14.5px;
}

/* Footer */
.site-footer {
  background: var(--dark-new);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-text {
  color: var(--white);
}

.footer-blurb {
  margin: 20px 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 31ch;
}

.social-row--footer {
  gap: 0.85rem;
}

.social-row--footer .footer__social {
  padding: 9px;
  border-radius: 50%;
  background-color: #424849;
  transition: all .3s ease;
}

.social-row--footer .footer__social:hover {
  background-color: #D4AF37;
}

.social-row--footer .footer__social:hover svg path,
.social-row--footer .footer__social:hover svg rect,
.social-row--footer .footer__social:hover svg circle,
.social-row--footer .footer__social:hover svg line {
  stroke: #000;
}

.social-row--footer .social-link {
  color: rgba(255, 255, 255, 0.65);
}

.social-row--footer .social-link:hover {
  color: var(--yellow);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--yellow);
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-contact li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-contact li svg path,
.footer-contact li svg rect {
  stroke: #D4AF37;
}

.footer-contact li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--yellow);
}

.sub__heading {
  font-size: 11px;
  color: var(--light-teal);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.sub__heading .element__before {
  width: 32px;
  height: 1px;
  display: inline-block;
  background-color: #D4AF37;
}

.sub__heading.center {
  display: block;
  color: var(--yellow);
  text-align: center;
}

.sub__heading.text__white {
  color: var(--white);
}

.sub__heading.text__yellow {
  color: var(--yellow);
}

.fill-current {
  fill: #D4AF37;
  stroke: #D4AF37;
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4d7d8b;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-teal:hover {
  background: #3d6a78;
}

.shoulder .benefits .benefit-content .benefit-title {
  font-size: 15px;
  color: #2d3436;
  font-weight: 600;
}

.shoulder .benefits .benefit-content .benefit-desc {
  font-size: 13.5px;
  color: rgba(45, 52, 54, 0.65);
}


/*  Service Page CSS  */

#service-hero {
  padding: 64px 24px 48px;
}

#service-hero .hero__section {
  max-width: 768px;
}

#service-hero .hero__content p {
  color: #2d3436b3;
}

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

.price-form label {
  color: #fffdf9b3;
}

.hero__form--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

#about .about__rating {
  display: flex;
  gap: 10px;
  align-items: center;
}

#about .about__rating {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
}

#about .about__rating {
  /* background: var(--white); */
  background: #fffdf9;
  /* padding: 1rem 1.15rem; */
  padding: 20px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 17rem;
}

#about .about__rating--content p {
  margin: 0;
  padding: 0;
}

#about .about__rating--content p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-new);
}

#about .about__rating--content p:last-child {
  color: var(--light-teal);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.54px;
}

#about .section-title {
  font-size: 36px;
}

.process .section-title {
  margin: 0px;
}

.process .process-banner .process-banner__content div.sub__heading {
  margin-bottom: 5px;
}

.process .process-banner .process-banner__content h3 {
  margin: 0px;
  font-size: 24px;
}

.text--yellow {
  color: var(--yellow) !important;
}

.process-head>div:first-of-type {
  border-right: 1px solid #4c5253;
}

.services-grid .service-card .service__count {
  font-size: 10px;
  font-weight: 600;
  color: #2d343666;
}

.service-card--featured h3 {
  color: #fff;
}

.service-card--featured p {
  color: #fffdf9bf;
}

.service-card--featured .service__count {
  color: var(--yellow) !important;
}

.service-card--featured .most--booked {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fffdf926;
  padding-top: 15px;
}

.service-card--featured .most--booked a.service-more {
  padding-top: 0px;
}

.service-card--featured .most--booked .most--booked__text {
  color: #fffdf999;
  font-size: 10px;
  font-weight: 600;
}

.section-cta {
  background-image: url('../images/CTA.jpg');
  background-size: cover;
  background-position: center center;
  text-align: center;
}

.section-cta .cta__title {
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #fffdf9;
  max-width: 60%;
}

.section-cta .cta__text {
  margin: 20px auto;
  font-size: 14.5px;
  font-weight: 600;
  color: #fffdf9b3;
  max-width: 55%;
}

.section-cta .cta__btn {
  padding: 15px 80px;
  background: #4d7c8a;
  color: #fff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;

}

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

#get-in-touch {
  background-image: url('../images/Get-In-Touch-1.jpg');
  background-size: cover;
  background-position: center center;
  padding: 50px 15px;
  color: #fff;
}

#get-in-touch .get-in-touch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 150px;
}

#get-in-touch h2 {
  font-size: 30px;
}

#get-in-touch .get-in-touch-copy p {
  margin-bottom: 50px;
}

#get-in-touch ul {
  padding-left: 0px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}

#get-in-touch ul li {
  list-style-type: none;
  display: flex;
  gap: 15px;
  color: #fff;
  align-items: center;
}

#get-in-touch .get-in-touch-benefit-title {
  font-size: 24px;
  font-weight: 600;
}

#get-in-touch ul li a {
  text-decoration: none;
}

#get-in-touch #pricing {
  background-color: #2d343633 !important;
}

li {
  list-style-type: none;
}

.trust__form {
  display: flex !important;
  gap: 15px !important;
  justify-content: center !important;
  flex-direction: row !important;
}

.trust__form li {
  font-size: 11px;
  color: #fffdf9b3;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

#services .services__text {
  margin-top: 70px;
  margin-bottom: 50px;
  color: #2d3436b3;
  max-width: 50%;
}

#services .service__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#services .service__btn .sub__heading {
  margin-bottom: 0px;
}

#services .service__button--link {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #2d343626;
  color: var(--dark-new);
  font-size: 13px;
  font-weight: 600;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
}

.step__number{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step__number .card__hr{
  width: 50px;
  height: 1px;
  background: #d4af3766;
  transition: all .3s ease;
}

.step-card:hover .card__hr{
width: 80px;
}

.step-card:hover{
  cursor: pointer;
}

.trust-strip {
  overflow: hidden;
  width: 100%;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 140px;
  flex-shrink: 0;
  margin-left: 140px;
}

.trust-pill {
  flex-shrink: 0;
}

.trust-pill svg {
  display: block;
  height: 40px;
  width: auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .hero-lead {
    max-width: 100%;
  }

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

  .review-card--shoulder {
    position: relative;
    bottom: auto;
    left: 100%;
    transform: translateX(-100%);
    margin-top: -7.5rem;
  }
  .sub__heading .sub__heading--text{
    font-size: 11px;
  }

  #get-in-touch .get-in-touch-grid{
    gap: 50px;
  }

}



@media only screen and (max-width: 768px) {
  .top-bar-contact a {
    font-size: 12px;
  }

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

  .hero-title {
    font-size: 36px;
  }

  .hero-accent {
    display: inline;
  }

  #services .services__text,
  .section-cta .cta__title,
  .section-cta .cta__text {
    max-width: 100%;
  }

  #get-in-touch .get-in-touch-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin: 0px;
    width: 100%;
  }

  #about .about__rating {
    right: 0;
  }

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

  .top-bar-inner,
  .top-bar-contact {
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  p,
  a,
  span {
    font-size: 14px;
  }

  .hero-lead,
  .section-lead {
    font-size: 14px;
  }

  #services .services__text {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  #services .service__btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .process-head div:first-child,
  .features-teal-grid .feat-col:not(:last-child) {
    border: none;
  }

  #get-in-touch h2,
  .section-cta .cta__title {
    font-size: 24px;
  }

  #get-in-touch .get-in-touch-benefit-title {
    font-size: 18px;
  }

  .about-copy {
    margin-top: 20px;
  }
}


/* Hide mobile header on desktop */
.mobile-header {
  display: none;
}

/* Mobile Only */
@media (max-width: 1024px) {

  /* Hide desktop header */
  .site-header {
    display: none;
  }

  .mobile-header {
    display: block;
    width: 100%;
    background: #fffdf9;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  .mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0rem .9rem;
  }

  /* Hamburger */
  .mobile-menu-toggle {
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
  }

  /* Mobile nav */
  .mobile-nav {
    display: none;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
  }

  .mobile-nav.active {
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  .mobile-nav ul li {
    margin-bottom: 15px;
  }

  .mobile-nav ul li a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

/* Container label ko flex banaya taake alignment center ho sake */
.field:has(.file-input) {
    display: flex;
    flex-direction: column;
}

/* File input field ki styling */
.file-input {
    background: #f8fafc; /* Light background color */
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Form ke color ke mutabiq */
    width: 100%;
    
    /* Center alignment vertical middle karne ke liye */
    display: flex;
    align-items: center; 
    font-size: 14px;
    color: #fff; /* Agar background dark hai */
    cursor: pointer;
}

/* "Choose File" button ko styling dene ke liye */
.file-input::file-selector-button {
    background: #d4af37;
    color: #2D3436;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    margin-right: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.file-input::file-selector-button:hover {
    background: #D4AF37;
    color: #fff;
}

/* --- 1. SLIDER LAYOUT FIX --- */
.slider-section {
    padding: 60px 0;
    overflow: hidden; /* Arrows container se bahar na jayen */
}

/* Slick container se flex hata dein taake width sahi calculate ho */
.process-steps {
    display: block !important; 
    width: 100%;
}

/* Har slide ko barabar height dene ke liye */
.process-steps .slick-track {
    display: flex !important;
    align-items: stretch;
}

.process-steps .slick-slide {
    height: auto !important;
    display: flex !important;
}

.step-card {
    padding: 35px;
    border-radius: 15px;
    margin: 10px 15px; /* Cards ke darmiyan gap */
    min-height: 380px;
    display: flex !important;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Modern clean look */
    border: 1px solid #f0f0f0;
}

.text--yellow { 
    color: #D4AF37; 
    margin-bottom: 15px; 
    font-weight: 700;
}

/* --- 2. SLIDER ARROWS & DOTS --- */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slick-prev { left: -20px; }
.slick-next { right: -20px; }

.slick-prev:before, .slick-next:before {
    color: #D4AF37; /* Gold arrows */
    font-size: 25px;
    opacity: 1;
}

.slick-dots { bottom: -45px; }
.slick-dots li button:before { color: #5B7C84; font-size: 10px; }
.slick-dots li.slick-active button:before { color: #D4AF37; }

/* --- 3. FAQ STYLING (One Open Logic) --- */
.faq-item {
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-bottom: 20px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- 4. RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
    .step-card { margin: 10px 10px; }
}

@media (max-width: 768px) {
    .main-title { font-size: 32px; }
    .step-card { min-height: auto; }
}




















/* --- Desktop Dropdown Styling --- */
.has-dropdown { position: relative; }

.dropdown-caret { 
    margin-left: 5px; 
    transition: transform 0.3s ease; 
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #FFFFFF;
    border-top: 3px solid #D4AF37; /* Serene Sage context but keeping your Gold brand */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    color: #2D3436;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #F9F9F9;
    color: #D4AF37;
    padding-left: 30px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }

/* --- Mobile Dropdown Styling --- */
.mobile-dropdown {
    display: none; /* Controlled via JS */
    background: #fdfdfd;
    padding-left: 15px;
    list-style: none;
}

.mobile-has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown li a {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

/* =========================
   PHONE INPUT STYLE
========================= */

.iti {
  width:100%;
}

.iti input {
  width:100% !important;
  height:45px;
  border-radius:6px;
}


/* =========================
 PHONE COUNTRY DROPDOWN
========================= */

.iti__country-list {

  width:330px !important;

  max-width:330px !important;

  max-height:300px !important;

  background:#fff !important;

  color:#333 !important;

  border-radius:6px !important;

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

  z-index:999999 !important;

  overflow-x:hidden !important;

}


.iti__country {

  display:flex !important;

  align-items:center !important;

  padding:8px 12px !important;

  color:#333 !important;

}


.iti__country-name {

  color:#333 !important;

  flex:1;

  font-size:14px;

}


.iti__dial-code {

  color:#777 !important;

  margin-left:auto;

}

/* intl-tel-input selected dial code visibility in the homepage form */
.price-form .iti__selected-dial-code {
  color: #2d343680 !important;
}

.price-form .iti__selected-country-name {
  color: #2d343680 !important;
}

/* Order form uses a different theme wrapper (`.input-field`) */
.input-field .iti__selected-dial-code {
  color: #2d343680 !important;
}

.input-field .iti__selected-country-name {
  color: #2d343680 !important;
}


.iti__country:hover,

.iti__highlight {

  background:#f5f5f5 !important;

}


/* Search box */

.iti__search-input {

  width:100% !important;

  height:38px !important;

  padding:8px 10px !important;

  color:#333 !important;

  border:1px solid #ddd !important;

}



/* =========================
 COUNTRY DROPDOWN (CHOICES)
========================= */


.choices {

  width:100%;

}


.choices__inner {

  background:#fff !important;

  border:1px solid #ddd !important;

  border-radius:6px !important;

  min-height:45px !important;

  padding:10px 12px !important;

  color:#333 !important;

}


.choices__list--single {

  padding:0 !important;

}


.choices__item {

  color:#333 !important;

}


.choices__list--dropdown {

  background:#fff !important;

  border:1px solid #ddd !important;

  z-index:999999 !important;

}


.choices__list--dropdown .choices__item {

  color:#333 !important;

}


.choices__list--dropdown .choices__item:hover {

  background:#f5f5f5 !important;

}

.price-form input,
.price-form select,
.price-form textarea,
.iti input,
.choices__inner {

  width: 100%;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #2d343680 !important;
  background: var(--white);

}


.iti {
    width:100%;
}


.choices {
    width:100%;
}


.choices__inner {

    min-height:auto !important;

}


.choices__list--single {

    padding:0 !important;

}




.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  /* border-radius: 50%; */
}

.cabaw{
  color: var(--yellow);
  font-weight: bold;
  text-decoration: underline;
}

