@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600;700&family=Crimson+Text:wght@400;600&display=swap');

:root {
  --primary: hsl(157, 48%, 55%);
  --secondary: hsl(171, 43%, 40%);
  --accent: hsl(337, 58%, 69%);
  --bg-dark: #101216;
  --bg-panel: #1a1d23;
  --clr-primary: hsl(157, 48%, 55%);
  --clr-secondary: hsl(171, 43%, 40%);
  --clr-accent: hsl(337, 58%, 69%);
}

body{
  background-color: var(--bg-dark);
  color: #f0f0f0;
  font-family: 'Crimson Text', serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Work Sans', sans-serif;
  color: #f5f5f5;
}
a{
  text-decoration: none;
}
.navbar{
  background-color: var(--bg-panel);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  padding-bottom: 16px;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #f5f5f5 !important;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: #e5e5e5 !important;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 8px 18px !important;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.navbar-nav .nav-link:hover{
  color: #101216 !important;
  background-color: var(--primary);
}
.navbar-toggler{
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon{
  filter: invert(1);
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(157, 48%, 96%) 0%, hsl(171, 43%, 95%) 100%);
    padding: 2rem 1rem;
    font-family: 'Crimson Text', serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .thankyou-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary), var(--clr-accent));
  }

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(157, 48%, 55%, 0.35);
    animation: popIn 0.5s ease-out;
  }

  @keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
  }

  .success-icon-wrapper svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
  }

  .thankyou-heading {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: hsl(171, 43%, 22%);
    margin-bottom: 1.25rem;
  }

  .thankyou-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4a5a56;
    margin-bottom: 0.85rem;
  }

  .thankyou-note {
    background: hsl(337, 58%, 97%);
    border-left: 4px solid var(--clr-accent);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    color: #5c4650;
    margin: 1.75rem 0;
    text-align: left;
  }

  .btn-thankyou-home {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border: none;
    color: #ffffff;
    padding: 0.85rem 2.5rem;
    border-radius: 3rem;
    font-size: 1.05rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0.5rem 1.25rem hsla(171, 43%, 40%, 0.3);
  }

  .btn-thankyou-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.75rem hsla(171, 43%, 40%, 0.4);
    color: #ffffff;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: var(--clr-accent);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.5rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
    .success-icon-wrapper {
      width: 80px;
      height: 80px;
    }
    .success-icon-wrapper svg {
      width: 42px;
      height: 42px;
    }
  }

footer{background:#101216;color:#e8e9ec;font-family:'Crimson Text',serif;border-top:1px solid rgba(255,255,255,0.1);padding:64px 0 24px;}
footer h5,footer h6{font-family:'Work Sans',sans-serif;color:#f5f6f7;}
footer a{color:#c9cbd1;text-decoration:none;}
footer a:hover{color:hsl(157,48%,55%);}
footer .footer-desc{color:#b7b9bf;font-size:1.05rem;line-height:1.6;}
footer .contact-line{margin-bottom:10px;font-size:1rem;}
footer .footer-divider{border-color:rgba(255,255,255,0.12);margin:32px 0 20px;}
footer .social-icons a{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid rgba(255,255,255,0.2);border-radius:8px;margin-right:10px;color:#e8e9ec;font-size:1.1rem;transition:all .2s ease;}
footer .social-icons a:hover{background:hsl(157,48%,55%);border-color:hsl(157,48%,55%);color:#101216;}
footer .footer-bottom{font-size:0.9rem;color:#9a9ca3;}
footer ul{list-style:none;padding-left:0;}
footer ul li{margin-bottom:8px;}

#cookieBar{position:fixed;bottom:0;left:0;right:0;background:#15171c;color:#e8e9ec;border-top:2px solid hsl(157,48%,55%);z-index:9999;font-family:'Crimson Text',serif;box-shadow:0 -4px 20px rgba(0,0,0,0.4);max-height:60vh;overflow-y:auto;}
#cookieBar h6{font-family:'Work Sans',sans-serif;color:#f5f6f7;margin-bottom:6px;}
#cookieBar p{font-size:0.92rem;color:#b7b9bf;margin-bottom:8px;}
#cookieBar .cookie-cat{font-size:0.88rem;color:#c9cbd1;margin-bottom:4px;}
#cookieBar .cookie-cat strong{color:#e8e9ec;}
.btn-cookie-accept{background:hsl(157,48%,55%);border:none;color:#101216;font-weight:600;padding:10px 20px;border-radius:8px;font-family:'Work Sans',sans-serif;transition:all .2s ease;}
.btn-cookie-accept:hover{background:hsl(171,43%,40%);color:#fff;}
.btn-cookie-reject{background:transparent;border:1px solid hsl(337,58%,69%);color:hsl(337,58%,69%);font-weight:600;padding:10px 20px;border-radius:8px;font-family:'Work Sans',sans-serif;transition:all .2s ease;}
.btn-cookie-reject:hover{background:hsl(337,58%,69%);color:#101216;}
.btn-cookie-manage{color:#c9cbd1;text-decoration:underline;font-size:0.9rem;}
.btn-cookie-manage:hover{color:hsl(157,48%,55%);}

#about-section {
  background: #14161b;
  color: #e8e8e8;
  font-family: 'Crimson Text', serif;
  padding: 96px 0;
}
#about-section h1, #about-section h2, #about-section h3 {
  font-family: 'Work Sans', sans-serif;
  color: #f5f5f5;
}
#about-section .lead-text {
  font-size: 1.25rem;
  color: #cfd2d6;
}
#about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
#about-section .panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
}
#about-section .value-item {
  border-left: 3px solid hsl(157, 48%, 55%);
  padding-left: 16px;
  margin-bottom: 20px;
}
#about-section .value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: hsl(157, 48%, 65%);
}
#about-section dl.details-list {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
#about-section dl.details-list div {
  display: flex;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#about-section dl.details-list div:last-child {
  border-bottom: none;
}
#about-section dl.details-list dt {
  width: 220px;
  font-family: 'Work Sans', sans-serif;
  color: hsl(171, 43%, 60%);
  font-weight: 600;
}
#about-section dl.details-list dd {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #d8d8d8;
}
#about-section .accent-link {
  color: hsl(337, 58%, 69%);
  text-decoration: underline;
}
#about-section .accent-link:hover {
  color: hsl(337, 58%, 80%);
}
#about-section .btn-cta {
  background: hsl(157, 48%, 55%);
  color: #10130f;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 8px;
  border: none;
  display: inline-block;
  text-decoration: none;
}
#about-section .btn-cta:hover {
  background: hsl(157, 48%, 45%);
  color: #10130f;
}
#about-section hr.divider {
  border-color: rgba(255,255,255,0.12);
  margin: 56px 0;
}
@media (max-width: 767px) {
  #about-section dl.details-list dt {
    width: 100%;
    margin-bottom: 4px;
  }
}



body {
  font-family: 'Crimson Text', serif;
}

.hero-section {
  min-height: 100vh;
  background: #14161b;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-section h1 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #f5f5f5;
  line-height: 1.15;
}

.hero-section h2 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsl(157, 48%, 55%);
  margin-bottom: 1.2rem;
}

.hero-section p.lead-text {
  font-size: 1.25rem;
  color: #d5d8dd;
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid hsl(171, 43%, 40%);
  color: hsl(157, 48%, 55%);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: hsl(157, 48%, 55%);
  color: #101216;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero:hover {
  background-color: hsl(171, 43%, 40%);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2d33;
}

.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
  }
  .hero-section p.lead-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

#story {
  background-color: #14161b;
  color: #e8e9ec;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#story h2, #story h5 {
  font-family: 'Work Sans', sans-serif;
}
#story h2 {
  font-size: 2.4rem;
  color: #ffffff;
  font-weight: 600;
}
#story .eyebrow {
  color: hsl(157, 48%, 55%);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
}
#story p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cfd2d8;
}
#story .panel {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
  height: 100%;
}
#story .panel h5 {
  color: hsl(337, 58%, 69%);
  font-weight: 600;
  margin-bottom: 12px;
}
#story .img-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
#story .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#story .stat-line {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 32px;
}
#story .stat-num {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(157, 48%, 55%);
}
#story .stat-label {
  font-size: 0.95rem;
  color: #a7abb3;
}

#portfolio {
  background: #14161b;
  padding: 96px 0;
  color: #f0f0f0;
  font-family: 'Crimson Text', serif;
}
#portfolio h2, #portfolio h3, #portfolio .modal-title {
  font-family: 'Work Sans', sans-serif;
}
#portfolio .section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f5f5f5;
}
#portfolio .section-sub {
  color: #b7bcc4;
  font-size: 1.15rem;
  max-width: 680px;
}
#portfolio .portfolio-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
#portfolio .portfolio-card:hover {
  border-color: hsl(157, 48%, 55%);
  transform: translateY(-3px);
}
#portfolio .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0e0f12;
}
#portfolio .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio .portfolio-body {
  padding: 20px 22px 24px;
}
#portfolio .badge-category {
  background: hsl(171, 43%, 40%);
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
#portfolio .portfolio-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 10px;
}
#portfolio .portfolio-desc {
  color: #c4c8cf;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
#portfolio .btn-outline-accent {
  border: 1px solid hsl(337, 58%, 69%);
  color: hsl(337, 58%, 69%);
  background: transparent;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  padding: 7px 18px;
  border-radius: 7px;
  transition: all 0.2s ease;
}
#portfolio .btn-outline-accent:hover {
  background: hsl(337, 58%, 69%);
  color: #1a1d23;
}
#portfolio .modal-content {
  background: #1a1d23;
  color: #f0f0f0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}
#portfolio .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#portfolio .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}
#portfolio .modal-title {
  color: #f5f5f5;
}
#portfolio .btn-close {
  filter: invert(1);
}
#portfolio .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #0e0f12;
}
#portfolio .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio .btn-primary-accent {
  background: hsl(157, 48%, 55%);
  border: none;
  color: #10241a;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
}
#portfolio .btn-primary-accent:hover {
  background: hsl(157, 48%, 45%);
  color: #ffffff;
}

#statistics {
    background: #14171c;
    padding: 96px 0;
    font-family: 'Crimson Text', serif;
  }

  #statistics h2 {
    font-family: 'Work Sans', sans-serif;
    color: #f5f5f5;
    font-weight: 600;
  }

  #statistics .lead-text {
    color: #c3c8cf;
    font-size: 1.2rem;
    max-width: 700px;
  }

  #statistics .stat-card {
    background: #1a1d23;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  #statistics .stat-card:hover {
    transform: translateY(-4px);
    border-color: hsl(157, 48%, 55%);
  }

  #statistics .stat-icon {
    font-size: 2.2rem;
    color: hsl(157, 48%, 55%);
    margin-bottom: 14px;
    display: inline-block;
    animation: pulseIcon 2.4s ease-in-out infinite;
  }

  #statistics .stat-card:nth-child(even) .stat-icon {
    color: hsl(337, 58%, 69%);
  }

  @keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  #statistics .stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #f5f5f5;
    line-height: 1.1;
    display: block;
    counter-reset: num var(--num);
    animation: countUp 1.6s ease-out;
  }

  @keyframes countUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  #statistics .stat-label {
    color: #c3c8cf;
    font-size: 1.05rem;
    margin-top: 6px;
  }

  #statistics .stat-context {
    color: #8b9099;
    font-size: 0.9rem;
    margin-top: 4px;
    font-style: italic;
  }

#testimonials {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#testimonials h2 {
  font-family: 'Work Sans', sans-serif;
  color: #f5f5f5;
  font-weight: 700;
}
#testimonials .lead-sub {
  color: #b9c0c9;
  font-size: 1.15rem;
  max-width: 640px;
}
#testimonials .review-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#testimonials .review-card .stars {
  color: hsl(337, 58%, 69%);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
#testimonials .review-card .stars .empty {
  color: rgba(255,255,255,0.2);
}
#testimonials .review-card p.review-text {
  color: #d7dce2;
  font-size: 1.08rem;
  line-height: 1.6;
  flex-grow: 1;
}
#testimonials .review-card .reviewer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#testimonials .review-card .reviewer-name {
  font-family: 'Work Sans', sans-serif;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 1rem;
}
#testimonials .review-card .reviewer-loc {
  color: hsl(157, 48%, 65%);
  font-size: 0.92rem;
}
#testimonials .review-card.tall {
  background: #1c2027;
}
#testimonials .review-card.accent-border {
  border-color: hsl(157, 48%, 55%);
  border-width: 1px;
}
#testimonials .badge-summary {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px 24px;
  color: #d7dce2;
}
#testimonials .badge-summary strong {
  color: hsl(157, 48%, 60%);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #testimonials { padding: 64px 0; }
}

#enquiry {
  background: #14171c;
  padding: 96px 0;
  color: #f0f2f4;
  font-family: 'Crimson Text', serif;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Work Sans', sans-serif;
  color: #f0f2f4;
}
#enquiry .subtitle {
  color: hsl(157, 48%, 55%);
  font-size: 1.15rem;
}
#enquiry .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
}
#enquiry .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f0f2f4;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Crimson Text', serif;
  font-size: 1.05rem;
}
#enquiry .form-control:focus {
  background: #101216;
  color: #f0f2f4;
  border-color: hsl(157, 48%, 55%);
  box-shadow: 0 0 0 0.2rem hsla(157, 48%, 55%, 0.25);
}
#enquiry .form-label {
  color: #cfd3d8;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
}
#enquiry .btn-submit {
  background: hsl(157, 48%, 55%);
  color: #101216;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}
#enquiry .btn-submit:hover {
  background: hsl(171, 43%, 40%);
  color: #ffffff;
}
#enquiry .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#enquiry .info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
#enquiry .info-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#enquiry .info-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: hsla(337, 58%, 69%, 0.15);
  color: hsl(337, 58%, 69%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#enquiry .info-list a {
  color: hsl(157, 48%, 55%);
  text-decoration: none;
}
#enquiry .info-list a:hover {
  color: hsl(171, 43%, 40%);
  text-decoration: underline;
}
#enquiry .info-list p {
  margin: 0;
  color: #d5d8dc;
}
#enquiry .find-us-line {
  font-size: 0.98rem;
  color: #b7bbc1;
  margin-top: 6px;
}
#enquiry .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: #d5d8dc;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  padding: 6px 0;
}
#enquiry .hours-row:last-child {
  border-bottom: none;
}

.disclaimer-section{background:#14171c;color:#e8e9ec;padding:96px 0;font-family:'Crimson Text',serif;}
.disclaimer-section h2{font-family:'Work Sans',sans-serif;color:#f2f3f5;font-weight:600;}
.disclaimer-panel{background:#1a1d23;border:1px solid rgba(255,255,255,0.1);border-radius:8px;padding:40px;}
.disclaimer-icon{font-size:2rem;color:hsl(157,48%,55%);flex-shrink:0;}
.disclaimer-section p{font-size:1.1rem;line-height:1.7;color:#d5d7db;}

#contact-body {
  background: #14171c;
  color: #e8e8e8;
  padding: 96px 0;
  font-family: 'Crimson Text', serif;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Work Sans', sans-serif;
  color: #f5f5f5;
}
#contact-body .lead-text {
  font-size: 1.25rem;
  color: #cfd3d8;
  max-width: 640px;
}
#contact-body .info-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact-body .info-panel a {
  color: hsl(157, 48%, 55%);
  text-decoration: none;
}
#contact-body .info-panel a:hover {
  color: hsl(171, 43%, 40%);
  text-decoration: underline;
}
#contact-body .info-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#contact-body .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#contact-body .info-item strong {
  display: block;
  font-family: 'Work Sans', sans-serif;
  color: hsl(157, 48%, 55%);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
#contact-body .info-item span,
#contact-body .info-item p {
  color: #e8e8e8;
  margin-bottom: 0;
}
#contact-body .find-us {
  font-size: 0.98rem;
  color: #b8bcc2;
  margin-top: 8px;
}
#contact-body .form-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 40px;
}
#contact-body .form-label {
  color: #e8e8e8;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
}
#contact-body .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f5f5f5;
  border-radius: 6px;
  padding: 10px 14px;
}
#contact-body .form-control:focus {
  background: #101216;
  border-color: hsl(157, 48%, 55%);
  box-shadow: 0 0 0 0.2rem hsla(157, 48%, 55%, 0.25);
  color: #f5f5f5;
}
#contact-body .form-control::placeholder {
  color: #7a7f87;
}
#contact-body .btn-submit {
  background: hsl(157, 48%, 55%);
  color: #101216;
  border: none;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
#contact-body .btn-submit:hover {
  background: hsl(171, 43%, 40%);
  color: #fff;
}
#contact-body .cta-strip {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
  text-align: center;
}
#contact-body .cta-strip a.btn-cta {
  display: inline-block;
  background: hsl(337, 58%, 69%);
  color: #101216;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}
#contact-body .cta-strip a.btn-cta:hover {
  background: hsl(337, 58%, 55%);
  color: #fff;
}
@media (max-width: 767px) {
  #contact-body { padding: 64px 0; }
  #contact-body .form-panel, #contact-body .info-panel { padding: 24px; }
}
