@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: hsl(9, 56%, 63%);
  --secondary: hsl(15, 56%, 81%);
  --accent: hsl(1, 78%, 74%);
  --bg-dark: #101216;
  --bg-panel: #1a1d23;
}

body{
  background-color: var(--bg-dark);
  color: #f1f1f1;
  font-family: 'Playfair Display', serif;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Ubuntu', sans-serif;
}
.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: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #f1f1f1 !important;
}
.navbar-brand:hover{
  color: var(--secondary) !important;
}
.navbar-brand img{
  border-radius: 8px;
}
.navbar-nav .nav-link{
  color: #e7e7e7 !important;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover{
  color: var(--primary) !important;
}
.navbar-toggler{
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon{
  filter: invert(1) grayscale(100%) brightness(200%);
}
@media (max-width: 991px){
  .navbar-collapse{
    background-color: var(--bg-panel);
    padding: 16px;
    border-radius: 8px;
    margin-top: 12px;
  }
}



.hero-section {
  min-height: 100vh;
  background-color: #14161b;
  color: #f0eeec;
  display: flex;
  align-items: center;
  padding: 56px 0;
  font-family: 'Playfair Display', serif;
}

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

.hero-section h2 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: hsl(15, 56%, 81%);
  margin-bottom: 1.2rem;
}

.hero-section p.lead-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #d8d4cf;
  max-width: 520px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(230, 145, 120, 0.12);
  border: 1px solid hsl(9, 56%, 63%);
  color: hsl(15, 56%, 81%);
  padding: 6px 16px;
  border-radius: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.btn-hero {
  background-color: hsl(9, 56%, 63%);
  border: 1px solid hsl(9, 56%, 63%);
  color: #14161b;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-hero:hover {
  background-color: transparent;
  color: hsl(15, 56%, 81%);
  border-color: hsl(15, 56%, 81%);
  transform: translateY(-2px);
}

.hero-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(230, 200, 190, 0.15);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: hsl(9, 56%, 63%);
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: #b6b2ad;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 48px 0;
    text-align: left;
  }
}

#who-we-are {
  background: #14161b;
  color: #e8e6e3;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}
#who-we-are h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(9, 56%, 63%);
  font-weight: 700;
  margin-bottom: 24px;
}
#who-we-are h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(15, 56%, 81%);
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
}
#who-we-are p {
  color: #cfcdc9;
  line-height: 1.75;
  font-size: 1.05rem;
}
#who-we-are .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(232, 230, 227, 0.15);
}
#who-we-are .img-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#who-we-are .stats-panel {
  background: #1a1d23;
  border: 1px solid rgba(232, 230, 227, 0.12);
  border-radius: 8px;
  padding: 24px;
  margin-top: 32px;
}
#who-we-are .stats-panel .stat-num {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(1, 78%, 74%);
  font-weight: 700;
  font-size: 1.6rem;
}
#who-we-are .stats-panel .stat-label {
  color: #a9a7a3;
  font-size: 0.9rem;
}

#projects .portfolio-section {
  background: #14161b;
  padding: 96px 0;
  color: #f0ede9;
  font-family: 'Playfair Display', serif;
}
#projects .portfolio-section h2 {
  font-family: 'Ubuntu', sans-serif;
  color: #f5f1ee;
  font-weight: 700;
}
#projects .portfolio-section .lead-text {
  color: hsl(15, 56%, 81%);
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
}
#projects .case-card {
  background: #1a1d23;
  border: 1px solid rgba(230, 172, 152, 0.18);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
#projects .case-card:hover {
  border-color: hsl(9, 56%, 63%);
  transform: translateY(-4px);
}
#projects .case-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101216;
}
#projects .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#projects .case-body {
  padding: 20px 22px 24px;
}
#projects .case-badge {
  display: inline-block;
  background: hsl(15, 56%, 81%);
  color: #2b1a14;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}
#projects .case-title {
  font-family: 'Ubuntu', sans-serif;
  color: #f5f1ee;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#projects .case-desc {
  color: #c9c4be;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
#projects .btn-case-detail {
  background: transparent;
  border: 1px solid hsl(9, 56%, 63%);
  color: hsl(9, 56%, 63%);
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  padding: 7px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
#projects .btn-case-detail:hover {
  background: hsl(9, 56%, 63%);
  color: #1a1d23;
}
#projects .portfolio-section .modal-content {
  background: #1a1d23;
  color: #f0ede9;
  border: 1px solid rgba(230, 172, 152, 0.25);
  border-radius: 8px;
}
#projects .portfolio-section .modal-header {
  border-bottom: 1px solid rgba(230, 172, 152, 0.18);
}
#projects .portfolio-section .modal-footer {
  border-top: 1px solid rgba(230, 172, 152, 0.18);
}
#projects .portfolio-section .modal-title {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(9, 56%, 63%);
}
#projects .portfolio-section .modal img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}
#projects .portfolio-section .btn-close-custom {
  background: transparent;
  border: 1px solid #6b6660;
  color: #c9c4be;
  font-family: 'Ubuntu', sans-serif;
  border-radius: 6px;
  padding: 7px 18px;
}
#projects .portfolio-section .btn-close-custom:hover {
  border-color: hsl(1, 78%, 74%);
  color: hsl(1, 78%, 74%);
}
#projects .modal-meta {
  color: hsl(15, 56%, 81%);
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 14px;
}



#numbers {
  background: #101216;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #f2f0ee;
}

#numbers .section-heading {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  color: #f2f0ee;
  margin-bottom: 12px;
}

#numbers .section-sub {
  color: hsl(15, 56%, 81%);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

#numbers .stat-card {
  background: #16191f;
  border: 1px solid rgba(230, 165, 148, 0.25);
  border-radius: 8px;
  padding: 36px 24px;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

#numbers .stat-card:hover {
  border-color: hsl(9, 56%, 63%);
  transform: translateY(-4px);
}

#numbers .stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsla(9, 56%, 63%, 0.15);
  color: hsl(1, 78%, 74%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  border: 1px solid hsla(9, 56%, 63%, 0.4);
}

#numbers .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  animation: countIn 1.1s ease-out both;
}

@keyframes countIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#numbers .stat-label {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  color: #f2f0ee;
  font-size: 1.05rem;
  margin-top: 10px;
}

#numbers .stat-context {
  color: hsl(15, 56%, 81%);
  font-size: 0.9rem;
  margin-top: 6px;
}

@media (max-width: 767px) {
  #numbers .stat-number {
    font-size: 2.3rem;
  }
  #numbers {
    padding: 64px 0;
  }
}

#reviews {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #e8e6e3;
}
#reviews h2 {
  font-family: 'Ubuntu', sans-serif;
  color: #f5f0ec;
  font-weight: 700;
}
#reviews .lead-text {
  color: hsl(15, 56%, 81%);
  max-width: 700px;
}
#reviews .review-card {
  background: #1a1d23;
  border: 1px solid rgba(232, 178, 158, 0.18);
  border-radius: 8px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#reviews .review-card .stars {
  color: hsl(9, 56%, 63%);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
#reviews .review-card .name {
  font-family: 'Ubuntu', sans-serif;
  color: #f5f0ec;
  font-weight: 600;
  margin-bottom: 0;
}
#reviews .review-card .loc {
  color: hsl(15, 56%, 81%);
  font-size: 0.85rem;
}
#reviews .review-card .text {
  color: #d9d6d2;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-top: 14px;
  flex-grow: 1;
}
#reviews .review-card.short {
  padding-bottom: 20px;
}
#reviews .review-card.long {
  background: #191c22;
  border-left: 3px solid hsl(1, 78%, 74%);
}
#reviews .review-card.mid {
  border-style: dashed;
}
#reviews .avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(9, 56%, 63%);
  color: #1a1d23;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
#reviews .review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
#reviews .stats-strip {
  border-top: 1px solid rgba(232, 178, 158, 0.15);
  border-bottom: 1px solid rgba(232, 178, 158, 0.15);
  padding: 20px 0;
  margin: 56px 0 48px;
}
#reviews .stats-strip .num {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(1, 78%, 74%);
  font-weight: 700;
  font-size: 1.8rem;
}
#reviews .stats-strip .lbl {
  color: hsl(15, 56%, 81%);
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  #reviews { padding: 56px 0; }
}

#enquiry {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Playfair Display', serif;
  color: #f5f0ec;
}
#enquiry h2 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(9, 56%, 63%);
  font-weight: 700;
}
#enquiry .lead-text {
  color: #cfcac5;
  font-size: 1.05rem;
}
#enquiry .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(233, 172, 154, 0.2);
  border-radius: 8px;
  padding: 40px;
}
#enquiry .contact-panel h3 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(15, 56%, 81%);
  font-weight: 600;
  margin-bottom: 24px;
}
#enquiry .form-control {
  background: #101216;
  border: 1px solid rgba(233, 172, 154, 0.25);
  color: #f5f0ec;
  border-radius: 6px;
  padding: 12px 14px;
}
#enquiry .form-control:focus {
  background: #101216;
  border-color: hsl(9, 56%, 63%);
  color: #f5f0ec;
  box-shadow: 0 0 0 0.2rem rgba(217, 122, 100, 0.25);
}
#enquiry .form-control::placeholder {
  color: #8a8680;
}
#enquiry .form-label {
  color: #cfcac5;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
#enquiry .btn-submit {
  background: hsl(9, 56%, 63%);
  border: none;
  color: #14161b;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
#enquiry .btn-submit:hover {
  background: hsl(1, 78%, 74%);
  color: #14161b;
}
#enquiry .info-block {
  border-left: 2px solid hsl(9, 56%, 63%);
  padding-left: 20px;
  margin-bottom: 28px;
}
#enquiry .info-block h4 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(15, 56%, 81%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
#enquiry .info-block a {
  color: #f5f0ec;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 172, 154, 0.4);
}
#enquiry .info-block a:hover {
  color: hsl(9, 56%, 63%);
}
#enquiry .info-block p {
  color: #cfcac5;
  margin-bottom: 0;
}
#enquiry .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(1, 78%, 74%);
  font-size: 0.92rem;
  text-decoration: underline;
}
#enquiry .map-link:hover {
  color: hsl(9, 56%, 63%);
}
#enquiry .hours-panel {
  background: #101216;
  border: 1px solid rgba(233, 172, 154, 0.15);
  border-radius: 6px;
  padding: 16px 20px;
  margin-top: 8px;
}
#enquiry .hours-panel p {
  color: #cfcac5;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.disclaimer-section{background:#14161b;padding:96px 0;font-family:'Playfair Display',serif;color:#e8e6e3;border-top:1px solid rgba(230,215,205,0.12);border-bottom:1px solid rgba(230,215,205,0.12);}
.disclaimer-section h2{font-family:'Ubuntu',sans-serif;color:#f2ede9;font-weight:700;}
.disclaimer-panel{background:#1a1d23;border:1px solid rgba(230,215,205,0.18);border-radius:8px;padding:40px;}
.disclaimer-icon{font-size:2.2rem;color:hsl(9,56%,63%);}
.disclaimer-section p{color:#cfcbc6;line-height:1.75;font-size:1.05rem;}
@media (max-width:576px){.disclaimer-panel{padding:24px;}}

footer.site-footer {
  background: #14161b;
  color: #e8e6e2;
  font-family: 'Playfair Display', serif;
  border-top: 1px solid rgba(232, 214, 200, 0.15);
  padding: 64px 0 32px;
}
footer.site-footer h5, footer.site-footer h6 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(9, 56%, 63%);
}
footer.site-footer a {
  color: #e8e6e2;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.site-footer a:hover {
  color: hsl(1, 78%, 74%);
}
footer.site-footer .footer-desc {
  color: #b9b7b3;
  line-height: 1.7;
}
footer.site-footer hr {
  border-color: rgba(232, 214, 200, 0.15);
  margin: 32px 0 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(232, 214, 200, 0.25);
  color: #e8e6e2;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: hsl(9, 56%, 63%);
  border-color: hsl(9, 56%, 63%);
  color: #14161b;
}
.footer-copy {
  color: #9a9894;
  font-size: 0.9rem;
}
#consentPanel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #1a1d23;
  border-top: 2px solid hsl(9, 56%, 63%);
  color: #e8e6e2;
  font-family: 'Playfair Display', serif;
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
#consentPanel h6 {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(15, 56%, 81%);
  margin-bottom: 6px;
}
#consentPanel p, #consentPanel .cookie-cat {
  font-size: 0.88rem;
  color: #cfcdc9;
  margin-bottom: 8px;
}
.cookie-cat strong {
  color: #e8e6e2;
}
.btn-consent-accept, .btn-consent-reject {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  width: 100%;
}
.btn-consent-accept {
  background: hsl(9, 56%, 63%);
  color: #14161b;
}
.btn-consent-accept:hover {
  background: hsl(1, 78%, 74%);
  color: #14161b;
}
.btn-consent-reject {
  background: transparent;
  border: 1px solid hsl(15, 56%, 81%);
  color: #e8e6e2;
}
.btn-consent-reject:hover {
  background: hsl(15, 56%, 81%);
  color: #14161b;
}
.link-manage {
  color: hsl(1, 78%, 74%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.link-manage:hover {
  color: hsl(15, 56%, 81%);
}

#contact-page {
  background: #14161b;
  color: #e8e6e2;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}
#contact-page h1,
#contact-page h2,
#contact-page h3 {
  font-family: 'Ubuntu', sans-serif;
  color: #f2eee9;
}
#contact-page .lead-text {
  color: #c9c5be;
  max-width: 640px;
}
#contact-page .panel {
  background: #1a1d23;
  border: 1px solid rgba(232, 200, 190, 0.15);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#contact-page .form-label {
  color: #dcd8d2;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.92rem;
}
#contact-page .form-control {
  background: #101216;
  border: 1px solid rgba(232, 200, 190, 0.25);
  color: #e8e6e2;
  border-radius: 6px;
  padding: 10px 14px;
}
#contact-page .form-control:focus {
  background: #101216;
  color: #e8e6e2;
  border-color: hsl(9, 56%, 63%);
  box-shadow: 0 0 0 0.2rem hsla(9, 56%, 63%, 0.25);
}
#contact-page .form-control::placeholder {
  color: #8a877f;
}
#contact-page .btn-primary-custom {
  background: hsl(9, 56%, 63%);
  border: none;
  color: #101216;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
#contact-page .btn-primary-custom:hover {
  background: hsl(1, 78%, 74%);
  color: #101216;
}
#contact-page .info-item {
  border-top: 1px solid rgba(232, 200, 190, 0.15);
  padding: 18px 0;
}
#contact-page .info-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
#contact-page .info-label {
  font-family: 'Ubuntu', sans-serif;
  color: hsl(15, 56%, 81%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#contact-page a {
  color: hsl(9, 56%, 63%);
  text-decoration: none;
}
#contact-page a:hover {
  color: hsl(1, 78%, 74%);
  text-decoration: underline;
}
#contact-page .map-note {
  color: #b7b3ab;
  font-size: 0.95rem;
}
#contact-page .hours-line {
  color: #e8e6e2;
}
#contact-page .cta-block {
  border-top: 1px solid rgba(232, 200, 190, 0.15);
  margin-top: 56px;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  #contact-page { padding: 64px 0; }
  #contact-page .panel { padding: 24px; }
}

#about-content {
  background-color: #14161b;
  color: #e8e6e3;
  font-family: 'Playfair Display', serif;
  padding: 96px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Ubuntu', sans-serif;
}
#about-content h1 {
  color: hsl(9, 56%, 63%);
  font-weight: 700;
}
#about-content h2 {
  color: hsl(15, 56%, 81%);
  font-weight: 600;
  margin-bottom: 16px;
}
#about-content p {
  line-height: 1.75;
  color: #d4d1cc;
}
#about-content .lead {
  color: #f0eee9;
  font-size: 1.15rem;
}
#about-content .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(232, 230, 227, 0.15);
}
#about-content .panel {
  background-color: #1a1d23;
  border: 1px solid rgba(232, 230, 227, 0.12);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}
#about-content .stat-box {
  background-color: #1a1d23;
  border: 1px solid rgba(233, 138, 116, 0.25);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
#about-content .stat-number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(9, 56%, 63%);
}
#about-content .stat-label {
  font-size: 0.9rem;
  color: #b8b5b0;
}
#about-content .divider {
  border-top: 1px solid rgba(232, 230, 227, 0.12);
  margin: 56px 0;
}
#about-content .cta-box {
  background-color: hsl(9, 56%, 63%);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}
#about-content .cta-box h2 {
  color: #14161b;
}
#about-content .cta-box p {
  color: #241a16;
}
#about-content .btn-cta {
  background-color: #14161b;
  color: #f0eee9;
  border: 1px solid #14161b;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}
#about-content .btn-cta:hover {
  background-color: #2a2d33;
  color: #f0eee9;
}
#about-content a.text-link {
  color: hsl(15, 56%, 81%);
  text-decoration: underline;
}
#about-content a.text-link:hover {
  color: hsl(9, 56%, 63%);
}
@media (max-width: 767px) {
  #about-content { padding: 56px 0; }
  #about-content .cta-box { padding: 32px 20px; }
}



  .thankyou-section {
    font-family: 'Playfair Display', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, hsl(15, 56%, 92%) 0%, hsl(15, 56%, 88%) 100%);
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(197, 106, 79, 0.18);
    border: 1px solid hsl(15, 56%, 88%);
  }

  .thankyou-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(9, 56%, 63%), hsl(1, 78%, 74%));
    box-shadow: 0 0.5rem 1.5rem hsla(9, 56%, 63%, 0.4);
    animation: popIn 0.6s ease-out;
  }

  .thankyou-icon-wrap svg {
    width: 52px;
    height: 52px;
    stroke: #ffffff;
  }

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

  .thankyou-heading {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    color: hsl(9, 56%, 45%);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .thankyou-text {
    color: #5a4a44;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  .thankyou-divider {
    width: 60px;
    height: 4px;
    background: hsl(1, 78%, 74%);
    border-radius: 2px;
    margin: 1.5rem auto;
  }

  .thankyou-note {
    background: hsl(15, 56%, 96%);
    border-left: 4px solid hsl(9, 56%, 63%);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 0.98rem;
    color: #6b4f47;
    text-align: left;
    margin: 1.75rem 0;
  }

  .thankyou-note strong {
    font-family: 'Ubuntu', sans-serif;
    color: hsl(9, 56%, 40%);
  }

  .btn-thankyou {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    background-color: hsl(9, 56%, 63%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(9, 56%, 63%, 0.35);
  }

  .btn-thankyou:hover {
    background-color: hsl(1, 78%, 74%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(1, 78%, 74%, 0.45);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2.25rem 1.25rem;
      border-radius: 1rem;
    }
    .thankyou-heading {
      font-size: 1.6rem;
    }
    .thankyou-icon-wrap {
      width: 80px;
      height: 80px;
    }
    .thankyou-icon-wrap svg {
      width: 42px;
      height: 42px;
    }
  }
