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

:root {
  --primary: hsl(261, 28%, 33%);
  --secondary: hsl(21, 15%, 18%);
  --accent: hsl(141, 37%, 45%);
  --surface: #f4f4f1;
}

body{
  font-family: 'Lora', serif;
  background-color: var(--surface);
  color: var(--secondary);
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Oswald', sans-serif;
}
.navbar{
  background-color: var(--surface);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-brand img{
  border-radius: 12px;
}
.navbar-nav .nav-link{
  font-family: 'Oswald', sans-serif;
  color: var(--secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
  color: var(--accent);
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler:focus{
  box-shadow: 0 0 0 0.2rem rgba(93,66,143,0.25);
}

footer {
  background-color: hsl(21, 15%, 18%);
  color: #f4f4f1;
  font-family: 'Lora', serif;
  padding: 48px 0 24px;
  border-radius: 24px 24px 0 0;
}
footer h5, footer h6 {
  font-family: 'Oswald', sans-serif;
  color: #f4f4f1;
}
footer a {
  color: #d8d3e0;
  text-decoration: none;
}
footer a:hover {
  color: hsl(141, 37%, 55%);
}
footer .footer-desc {
  color: #cfc9d8;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: hsl(261, 28%, 33%);
  color: #f4f4f1;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}
.footer-social a:hover {
  background-color: hsl(141, 37%, 45%);
  color: #fff;
}
.footer-divider {
  border-color: rgba(244,244,241,0.15);
  margin: 32px 0 16px;
}
.footer-bottom-links a {
  color: #cfc9d8;
  margin-right: 16px;
  font-size: 0.9rem;
}
.footer-bottom-links a:hover {
  color: hsl(141, 37%, 55%);
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: hsl(21, 15%, 18%);
  color: #f4f4f1;
  border-top: 3px solid hsl(141, 37%, 45%);
  padding: 16px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Lora', serif;
}
#cookieNotice h6 {
  font-family: 'Oswald', sans-serif;
  color: #f4f4f1;
  margin-bottom: 8px;
}
#cookieNotice p, #cookieNotice li {
  color: #d8d3e0;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.cookie-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background-color: hsl(141, 37%, 45%);
  color: #fff;
}
.btn-accept-all:hover {
  background-color: hsl(141, 37%, 38%);
  transform: translateY(-2px);
  color: #fff;
}
.btn-reject {
  background-color: hsl(261, 28%, 33%);
  color: #fff;
}
.btn-reject:hover {
  background-color: hsl(261, 28%, 26%);
  transform: translateY(-2px);
  color: #fff;
}
.cookie-manage-link {
  font-size: 0.82rem;
  color: #cfc9d8;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(141, 37%, 55%);
}

.hero-section {
  background-color: #f4f4f1;
  padding: 52px 0;
}
.hero-section h1 {
  font-family: 'Oswald', sans-serif;
  color: hsl(21, 15%, 18%);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
  font-weight: 500;
  font-size: 1.3rem;
}
.hero-section p.lead-text {
  font-family: 'Lora', serif;
  color: #333;
  font-size: 1.05rem;
  max-width: 640px;
}
.hero-img-strip {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
}
.hero-img-strip img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.hero-cta-btn {
  background-color: hsl(141, 37%, 45%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  border: none;
  padding: 14px 32px;
  border-radius: 16px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-btn:hover {
  background-color: hsl(261, 28%, 33%);
  color: #ffffff;
  transform: translateY(-2px);
}
.hero-badge {
  font-family: 'Lora', serif;
  color: hsl(261, 28%, 33%);
  font-size: 0.95rem;
}
@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.9rem;
  }
  .hero-section h2 {
    font-size: 1.1rem;
  }
}

.services-section{background:#f4f4f1;padding:56px 0;font-family:'Lora',serif;}
.services-section h2{font-family:'Oswald',sans-serif;color:hsl(261,28%,33%);font-weight:600;}
.services-section .lead-text{color:#333;max-width:700px;margin:0 auto;}
.service-card{
  background:#fff;
  border-radius:20px;
  border:1px solid #e6e4e0;
  padding:28px 24px;
  height:100%;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(60,45,90,0.15);
  background:hsl(261,28%,33%);
}
.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-price{
  color:#f7f6f3;
}
.service-card:hover .icon-wrap{
  background:hsl(141,37%,45%);
  color:#fff;
}
.icon-wrap{
  width:64px;
  height:64px;
  border-radius:16px;
  background:hsl(141,37%,45%,0.12);
  color:hsl(141,37%,45%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  margin-bottom:18px;
  transition:background .3s ease, color .3s ease;
}
.service-title{
  font-family:'Oswald',sans-serif;
  color:hsl(21,15%,18%);
  font-size:1.15rem;
  font-weight:600;
  margin-bottom:10px;
  transition:color .3s ease;
}
.service-desc{
  color:#4a4a4a;
  font-size:0.95rem;
  flex-grow:1;
  transition:color .3s ease;
}
.service-price{
  margin-top:16px;
  font-family:'Oswald',sans-serif;
  font-weight:600;
  color:hsl(261,28%,33%);
  font-size:1.05rem;
  transition:color .3s ease;
}
.service-price span{
  display:block;
  font-family:'Lora',serif;
  font-weight:400;
  font-size:0.82rem;
  color:#6b6b6b;
  margin-top:2px;
}
.service-card:hover .service-price span{
  color:#e2ddec;
}
@media (max-width:767px){
  .service-card{padding:22px 18px;}
}

#gallery {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Lora', serif;
}
#gallery h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
  font-weight: 600;
}
#gallery .lead-text {
  color: hsl(21, 15%, 18%);
  max-width: 700px;
}
#gallery .portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#gallery .portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#gallery .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: hsl(141, 37%, 45%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}
#gallery .portfolio-body {
  padding: 22px 24px 24px;
}
#gallery .portfolio-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: hsl(21, 15%, 18%);
  margin-bottom: 8px;
}
#gallery .portfolio-body p {
  color: #4a4a4a;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
#gallery .btn-view-project {
  background-color: hsl(261, 28%, 33%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#gallery .btn-view-project:hover {
  background-color: hsl(141, 37%, 45%);
  color: #fff;
}
#gallery .modal-content {
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Lora', serif;
}
#gallery .modal-header {
  background-color: hsl(261, 28%, 33%);
  color: #f7f6f3;
  border-bottom: none;
}
#gallery .modal-header .btn-close {
  filter: invert(1);
}
#gallery .modal-title {
  font-family: 'Oswald', sans-serif;
}
#gallery .modal-body img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
#gallery .modal-body .modal-badge {
  display: inline-block;
  background: hsl(141, 37%, 45%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
#gallery .modal-body p {
  color: #333;
}

#benefits {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Lora', serif;
}
#benefits h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
  font-weight: 600;
}
#benefits .lead-text {
  color: hsl(21, 15%, 18%);
  max-width: 700px;
  margin: 0 auto;
}
#benefits .benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e8e6e2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
#benefits .benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(53, 41, 79, 0.15);
  background-color: hsl(261, 28%, 33%);
}
#benefits .benefit-card:hover .benefit-icon {
  background-color: hsl(141, 37%, 45%);
  color: #ffffff;
}
#benefits .benefit-card:hover h3, #benefits .benefit-card:hover p {
  color: #ffffff;
}
#benefits .benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsla(141, 37%, 45%, 0.12);
  color: hsl(141, 37%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#benefits .benefit-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: hsl(21, 15%, 18%);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
#benefits .benefit-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

#updates {
  background: hsl(261, 28%, 33%);
  padding: 52px 0;
  font-family: 'Lora', serif;
}
#updates .updates-card {
  background: hsl(21, 15%, 18%);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
}
#updates h2 {
  font-family: 'Oswald', sans-serif;
  color: #f7f6f3;
  font-size: 2rem;
  margin-bottom: 16px;
}
#updates p {
  color: #f4f4f1;
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1rem;
  line-height: 1.6;
}
#updates .updates-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
#updates input[type="email"] {
  flex: 1 1 260px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid hsl(261, 28%, 33%);
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #222;
  background: #f7f6f3;
}
#updates input[type="email"]:focus {
  outline: 2px solid hsl(141, 37%, 45%);
}
#updates button {
  background: hsl(141, 37%, 45%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#updates button:hover {
  background: hsl(141, 37%, 38%);
}
#updates .updates-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #cfc9d6;
}

#common-questions {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Lora', serif;
}
#common-questions .section-heading {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
  font-weight: 600;
  margin-bottom: 14px;
}
#common-questions .section-sub {
  color: hsl(21, 15%, 18%);
  margin-bottom: 40px;
  max-width: 700px;
}
#common-questions .accordion-item {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
#common-questions .accordion-button {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: hsl(21, 15%, 18%);
  background-color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
}
#common-questions .accordion-button:not(.collapsed) {
  background-color: hsl(261, 28%, 33%);
  color: #f7f6f3;
}
#common-questions .accordion-button:focus {
  box-shadow: none;
  border: none;
}
#common-questions .accordion-button::after {
  filter: none;
}
#common-questions .accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}
#common-questions .accordion-body {
  background-color: #fff;
  color: hsl(21, 15%, 18%);
  padding: 18px 22px 24px;
  line-height: 1.7;
}
#common-questions .accent-text {
  color: hsl(141, 37%, 45%);
  font-weight: 600;
}

#get-in-touch .contact-section {
    background: #f4f4f1;
    padding: 56px 0;
    font-family: 'Lora', serif;
}
#get-in-touch .contact-section h2 {
    font-family: 'Oswald', sans-serif;
    color: hsl(261, 28%, 33%);
    font-weight: 600;
}
#get-in-touch .contact-section p, #get-in-touch .contact-section li, #get-in-touch .contact-section span {
    color: #333;
}
#get-in-touch .contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
#get-in-touch .info-card {
    background: hsl(261, 28%, 33%);
    color: #f7f6f3;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}
#get-in-touch .info-card h3 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}
#get-in-touch .info-card a {
    color: #f7f6f3;
    text-decoration: none;
    border-bottom: 1px solid rgba(247,246,243,0.4);
}
#get-in-touch .info-card a:hover {
    color: hsl(141, 37%, 65%);
    border-bottom-color: hsl(141, 37%, 65%);
}
#get-in-touch .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}
#get-in-touch .info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: hsl(141, 37%, 45%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
#get-in-touch .map-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.95rem;
    color: hsl(141, 37%, 65%) !important;
    border-bottom: 1px solid hsl(141, 37%, 65%) !important;
}
#get-in-touch .contact-section .form-label {
    font-family: 'Oswald', sans-serif;
    color: hsl(21, 15%, 18%);
    font-weight: 500;
    font-size: 0.9rem;
}
#get-in-touch .contact-section .form-control {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-family: 'Lora', serif;
}
#get-in-touch .contact-section .form-control:focus {
    border-color: hsl(141, 37%, 45%);
    box-shadow: 0 0 0 0.2rem rgba(75, 168, 108, 0.2);
}
#get-in-touch .btn-send {
    background: hsl(141, 37%, 45%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 36px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}
#get-in-touch .btn-send:hover {
    background: hsl(141, 37%, 38%);
    color: #fff;
}
#get-in-touch .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
#get-in-touch .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(247,246,243,0.15);
    color: #f7f6f3;
    font-size: 0.95rem;
}
#get-in-touch .hours-list li:last-child {
    border-bottom: none;
}

.disclaimer-section {
  background-color: #f4f4f1;
  padding: 52px 0;
  font-family: 'Lora', serif;
}
.disclaimer-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e0da;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.disclaimer-icon {
  font-size: 2rem;
  color: hsl(141, 37%, 45%);
  margin-bottom: 16px;
}
.disclaimer-title {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.disclaimer-text {
  color: #333333;
  font-size: 1.02rem;
  line-height: 1.75;
}

#about-content {
  background-color: #f4f4f1;
  font-family: 'Lora', serif;
  color: #2a2a2a;
  padding: 56px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
}
#about-content .hero-box {
  background-color: hsl(261, 28%, 33%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 48px 32px;
  margin-bottom: 52px;
}
#about-content .hero-box h1 {
  color: #ffffff;
}
#about-content .hero-box p {
  color: #eae7f0;
  font-size: 1.1rem;
  max-width: 780px;
}
#about-content .section-block {
  margin-bottom: 52px;
}
#about-content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
#about-content .value-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #e5e3dd;
}
#about-content .value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
#about-content .value-card .accent-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: hsl(141, 37%, 45%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
}
#about-content .stat-strip {
  background-color: hsl(21, 15%, 18%);
  color: #f7f6f3;
  border-radius: 20px;
  padding: 36px 24px;
}
#about-content .stat-strip .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.1rem;
  color: hsl(141, 37%, 45%);
  font-weight: 600;
}
#about-content .stat-strip .stat-label {
  color: #e6e3dd;
  font-size: 0.95rem;
}
#about-content .qa-item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 16px;
  border: 1px solid #e5e3dd;
}
#about-content .qa-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#about-content .cta-box {
  background-color: hsl(141, 37%, 45%);
  color: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 52px;
}
#about-content .cta-box h2 {
  color: #ffffff;
}
#about-content .cta-box p {
  color: #eafaf0;
}
#about-content .btn-cta {
  background-color: #ffffff;
  color: hsl(141, 37%, 45%);
  font-family: 'Oswald', sans-serif;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
  border: 2px solid #ffffff;
}
#about-content .btn-cta:hover {
  background-color: transparent;
  color: #ffffff;
}
@media (max-width: 767px) {
  #about-content .hero-box {
    padding: 32px 22px;
  }
  #about-content .stat-strip {
    text-align: center;
  }
}

#contact-page {
  background: #f4f4f1;
  padding: 56px 0;
  font-family: 'Lora', serif;
  color: #222;
}
#contact-page h1,
#contact-page h2,
#contact-page h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(261, 28%, 33%);
}
#contact-page .intro-text {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #333;
}
#contact-page .contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  height: 100%;
}
#contact-page .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
#contact-page .info-list li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#contact-page .info-list li .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: hsl(141, 37%, 45%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
#contact-page .info-list a {
  color: hsl(261, 28%, 33%);
  text-decoration: none;
  font-weight: 600;
}
#contact-page .info-list a:hover {
  text-decoration: underline;
  color: hsl(141, 37%, 45%);
}
#contact-page .info-list span {
  color: #333;
}
#contact-page .hours-box {
  background: hsl(21, 15%, 18%);
  color: #f7f6f3;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
#contact-page .hours-box h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
#contact-page .hours-box p {
  margin: 4px 0;
  color: #f0f0ee;
  font-size: 0.95rem;
}
#contact-page .find-us {
  font-size: 0.95rem;
  color: #333;
  border-top: 1px solid #e5e4e0;
  padding-top: 16px;
}
#contact-page .find-us a {
  color: hsl(141, 37%, 45%);
  font-weight: 600;
  text-decoration: none;
}
#contact-page .find-us a:hover {
  text-decoration: underline;
}
#contact-page .form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
#contact-page .form-label {
  font-weight: 600;
  color: hsl(21, 15%, 18%);
}
#contact-page .form-control {
  border-radius: 12px;
  border: 1px solid #dcdad5;
  padding: 10px 14px;
  font-family: 'Lora', serif;
}
#contact-page .form-control:focus {
  border-color: hsl(141, 37%, 45%);
  box-shadow: 0 0 0 0.2rem rgba(69, 156, 98, 0.2);
}
#contact-page .btn-submit {
  background: hsl(141, 37%, 45%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: background 0.2s ease;
}
#contact-page .btn-submit:hover {
  background: hsl(261, 28%, 33%);
  color: #fff;
}
#contact-page .cta-strip {
  background: hsl(261, 28%, 33%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
#contact-page .cta-strip h2 {
  color: #fff;
}
#contact-page .cta-strip p {
  color: #ece9f2;
}
#contact-page .cta-strip .btn-cta {
  background: hsl(141, 37%, 45%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}
#contact-page .cta-strip .btn-cta:hover {
  background: #fff;
  color: hsl(261, 28%, 33%);
}
@media (max-width: 767px) {
  #contact-page .contact-card,
  #contact-page .form-card {
    padding: 22px;
  }
}





.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(261, 28%, 33%, 0.05) 0%, hsl(141, 37%, 45%, 0.08) 100%);
  padding: 3rem 1rem;
  font-family: 'Lora', serif;
}

.thankyou-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
  padding: 3rem 2rem;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.thankyou-icon-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: hsl(141, 37%, 45%, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease-out;
}

.thankyou-icon-wrap svg {
  width: 56px;
  height: 56px;
}

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

.thankyou-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.thankyou-text {
  color: hsl(21, 15%, 18%, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

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

.thankyou-info-box {
  background: hsl(261, 28%, 33%, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  text-align: start;
}

.thankyou-info-box p {
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
  color: var(--secondary);
}

.thankyou-info-box i {
  color: var(--accent);
  margin-right: 0.5rem;
  width: 1.2rem;
}

.btn-thankyou-primary {
  font-family: 'Oswald', sans-serif;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 0.7rem 2.25rem;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-thankyou-primary:hover,
.btn-thankyou-primary:focus {
  background-color: hsl(261, 28%, 25%);
  border-color: hsl(261, 28%, 25%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem hsl(261, 28%, 33%, 0.3);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2rem 1.25rem;
  }
  .thankyou-heading {
    font-size: 1.6rem;
  }
  .thankyou-icon-wrap {
    width: 90px;
    height: 90px;
  }
  .thankyou-icon-wrap svg {
    width: 46px;
    height: 46px;
  }
}
