@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Source+Sans+Pro:wght@400;600&display=swap');

:root {
  --primary: hsl(132, 32%, 61%);
  --secondary: hsl(138, 27%, 45%);
  --accent: hsl(124, 58%, 82%);
  --bg-dark: #101216;
  --bg-panel: #16191f;
  --clr-primary: hsl(132, 32%, 61%);
  --clr-secondary: hsl(138, 27%, 45%);
  --clr-accent: hsl(124, 58%, 82%);
}

body {
  background-color: var(--bg-dark);
  color: #f0f2f0;
  font-family: 'Source Sans Pro', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}
.navbar {
  background-color: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  padding-bottom: 18px;
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #f0f2f0 !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-nav .nav-link {
  color: #e6e9e6 !important;
  font-weight: 600;
  margin-left: 8px;
  margin-right: 8px;
  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);
}





.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-accent) 0%, #ffffff 60%);
  font-family: 'Source Sans Pro', sans-serif;
  padding: 2rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 3rem 2.5rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

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

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s ease-out 0.2s both;
}

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

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: var(--clr-secondary);
}

.thankyou-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--clr-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thankyou-text {
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.thankyou-subtext {
  color: #6b6b6b;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.btn-thankyou {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background-color: var(--clr-primary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-thankyou:hover {
  background-color: var(--clr-secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.thankyou-note {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: #8a8a8a;
}

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

footer {
  background: #14161a;
  color: #e8ebe8;
  font-family: 'Source Sans Pro', sans-serif;
  border-top: 1px solid hsl(132, 32%, 61%, 0.25);
  padding: 96px 0 32px;
}
footer h5, footer h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(124, 58%, 82%);
}
footer a {
  color: #cfd6d0;
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(132, 32%, 61%);
}
footer p {
  color: #b6bdb8;
}
.footer-divider {
  border-color: hsl(138, 27%, 45%, 0.3);
  margin: 48px 0 24px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid hsl(132, 32%, 61%, 0.4);
  color: hsl(124, 58%, 82%);
  font-size: 1.2rem;
  transition: all 0.25s ease;
}
.footer-social-icon:hover {
  background: hsl(132, 32%, 61%);
  color: #101216;
  border-color: hsl(132, 32%, 61%);
}
.footer-policy-links a {
  font-size: 0.92rem;
}
#consentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #14161a;
  border-top: 2px solid hsl(132, 32%, 61%);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.4);
  padding: 20px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Source Sans Pro', sans-serif;
  color: #e8ebe8;
}
#consentBar h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(124, 58%, 82%);
  margin-bottom: 6px;
}
#consentBar p, #consentBar li {
  color: #c3c9c3;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
#consentBar ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.consent-btn {
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  transition: all 0.2s ease;
  flex: 1;
}
.btn-consent-accept {
  background: hsl(132, 32%, 61%);
  color: #101216;
}
.btn-consent-accept:hover {
  background: hsl(138, 27%, 45%);
  color: #fff;
}
.btn-consent-reject {
  background: transparent;
  color: hsl(124, 58%, 82%);
  border: 1px solid hsl(132, 32%, 61%);
}
.btn-consent-reject:hover {
  background: hsl(132, 32%, 61%, 0.15);
  color: #fff;
}
.consent-manage-link {
  color: #b6bdb8;
  font-size: 0.85rem;
  text-decoration: underline;
}
.consent-manage-link:hover {
  color: hsl(132, 32%, 61%);
}

#contact-main {
  background: #14171c;
  color: #f2f4f2;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#contact-main h1,
#contact-main h2,
#contact-main h3 {
  font-family: 'Montserrat', sans-serif;
}
#contact-main .lead-intro {
  color: #c9cfca;
  max-width: 640px;
}
#contact-main .panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contact-main label {
  color: #dfe4e0;
  font-weight: 600;
  margin-bottom: 6px;
}
#contact-main .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f2f4f2;
  border-radius: 12px;
  padding: 10px 14px;
}
#contact-main .form-control:focus {
  background: #101216;
  color: #f2f4f2;
  border-color: hsl(132, 32%, 61%);
  box-shadow: 0 0 0 0.2rem rgba(120, 200, 140, 0.25);
}
#contact-main .form-control::placeholder {
  color: #8a9089;
}
#contact-main .btn-submit {
  background: hsl(132, 32%, 61%);
  color: #101216;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  padding: 12px 28px;
  transition: background 0.2s ease;
}
#contact-main .btn-submit:hover {
  background: hsl(138, 27%, 45%);
  color: #fff;
}
#contact-main .info-block {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
#contact-main .info-block:last-child {
  border-bottom: none;
}
#contact-main .info-label {
  color: hsl(124, 58%, 82%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
#contact-main a.contact-link {
  color: #f2f4f2;
  text-decoration: none;
  border-bottom: 1px solid hsl(132, 32%, 61%);
}
#contact-main a.contact-link:hover {
  color: hsl(124, 58%, 82%);
}
#contact-main .map-link {
  color: hsl(124, 58%, 82%);
  text-decoration: underline;
  font-size: 0.95rem;
}
#contact-main .map-link:hover {
  color: hsl(132, 32%, 61%);
}
#contact-main .cta-final {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 80px;
  padding-top: 56px;
  text-align: center;
}
#contact-main .cta-final .btn-submit {
  padding: 14px 40px;
  font-size: 1.05rem;
}
@media (max-width: 767px) {
  #contact-main {
    padding: 64px 0;
  }
  #contact-main .panel {
    padding: 28px 22px;
  }
}

#about-section {
  background: #101216;
  color: #e8e9ea;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}

#about-section h1,
#about-section h2,
#about-section h3 {
  font-family: 'Montserrat', sans-serif;
  color: #f5f7f5;
}

#about-section .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

#about-section .hero-lead {
  font-size: 1.15rem;
  color: #c9ccc9;
  max-width: 720px;
}

#about-section .content-block {
  margin-top: 96px;
}

#about-section .content-block h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid hsl(132, 32%, 61%);
  padding-left: 16px;
}

#about-section .content-block p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d3d5d3;
}

#about-section .panel {
  background: #16181e;
  border: 1px solid #2a2d33;
  border-radius: 20px;
  padding: 40px;
}

#about-section img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #2a2d33;
}

#about-section .stat-box {
  background: #16181e;
  border: 1px solid #2a2d33;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
}

#about-section .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(132, 32%, 61%);
  display: block;
}

#about-section .stat-label {
  color: #c9ccc9;
  font-size: 0.95rem;
}

#about-section .values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#about-section .values-list li {
  padding: 18px 0;
  border-bottom: 1px solid #2a2d33;
  color: #d3d5d3;
  font-size: 1.02rem;
}

#about-section .values-list li:last-child {
  border-bottom: none;
}

#about-section .values-list strong {
  color: hsl(124, 58%, 82%);
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

#about-section .cta-box {
  background: hsl(138, 27%, 45%);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  margin-top: 96px;
}

#about-section .cta-box h2 {
  color: #101216;
  font-weight: 700;
}

#about-section .cta-box p {
  color: #1a1d23;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

#about-section .btn-cta {
  background: #101216;
  color: #f5f7f5;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
}

#about-section .btn-cta:hover {
  opacity: 0.85;
  color: #f5f7f5;
}

@media (max-width: 767px) {
  #about-section .hero-title {
    font-size: 2.1rem;
  }
  #about-section .content-block {
    margin-top: 64px;
  }
  #about-section .panel {
    padding: 24px;
  }
  #about-section .cta-box {
    padding: 40px 24px;
  }
}



.hero-vo {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(16,18,22,0.75) 0%, rgba(16,18,22,0.55) 40%, rgba(16,18,22,0.92) 100%),
    url('../images/headline.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f7f6;
  font-family: 'Source Sans Pro', sans-serif;
  overflow: hidden;
}

.hero-vo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, hsla(132, 32%, 61%, 0.15), transparent 55%);
  pointer-events: none;
}

.hero-vo .hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

.hero-vo .badge-mic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid hsla(124, 58%, 82%, 0.4);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: hsl(124, 58%, 82%);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.03);
}

.hero-vo h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.08;
  color: #f5f7f6;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-vo h1 span {
  color: hsl(132, 32%, 61%);
}

.hero-vo h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsl(124, 58%, 82%);
  margin-bottom: 24px;
}

.hero-vo p.lead-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #d7dbd8;
  max-width: 560px;
  margin-bottom: 40px;
}

.btn-hero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #101216;
  background: hsl(132, 32%, 61%);
  border: none;
  border-radius: 18px;
  padding: 16px 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px hsla(132, 32%, 61%, 0.25);
}

.btn-hero:hover {
  background: hsl(138, 27%, 45%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px hsla(138, 27%, 45%, 0.4);
}

.hero-vo .scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,247,246,0.6);
  font-size: 1.6rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 767px) {
  .hero-vo .hero-inner { padding: 64px 0; }
  .hero-vo p.lead-text { max-width: 100%; }
}

#gallery {
  background: #14171c;
  padding: 112px 0;
}
#gallery h2 {
  font-family: 'Montserrat', sans-serif;
  color: #f2f5f2;
  font-weight: 700;
}
#gallery .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #c7cdc7;
  max-width: 700px;
}
#gallery .portfolio-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
#gallery .portfolio-card:hover {
  transform: translateY(-6px);
  border-color: hsl(132, 32%, 61%);
}
#gallery .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f1114;
}
#gallery .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery .portfolio-body {
  padding: 24px;
}
#gallery .portfolio-badge {
  display: inline-block;
  background: hsl(124, 58%, 82%);
  color: #17281a;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
#gallery .portfolio-card h3 {
  font-family: 'Montserrat', sans-serif;
  color: #f2f5f2;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
#gallery .portfolio-card p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #b7bdb7;
  font-size: 0.95rem;
  line-height: 1.55;
}
#gallery .btn-view-details {
  border: 1px solid hsl(132, 32%, 61%);
  color: hsl(132, 32%, 61%);
  background: transparent;
  border-radius: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  padding: 8px 20px;
}
#gallery .btn-view-details:hover {
  background: hsl(132, 32%, 61%);
  color: #101216;
}
#gallery .modal-content {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
}
#gallery .modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #f2f5f2;
}
#gallery .modal-body p, #gallery .modal-body li {
  font-family: 'Source Sans Pro', sans-serif;
  color: #c7cdc7;
}
#gallery .modal-header, #gallery .modal-footer {
  border-color: rgba(255,255,255,0.1);
}
#gallery .btn-close {
  filter: invert(1);
}
#gallery .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}
#gallery .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section{
  background:#14171c;
  padding:112px 0;
}
.services-section .section-heading{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:#f5f7f5;
}
.services-section .section-sub{
  font-family:'Source Sans Pro',sans-serif;
  color:#c3c9c3;
  max-width:640px;
}
.service-card{
  background:#1a1d23;
  border:1px solid rgba(184,224,192,0.15);
  border-radius:20px;
  padding:40px 32px;
  height:100%;
  transition:transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:hsl(132,32%,61%);
  background:#1d2128;
}
.service-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  background:hsl(138,27%,45%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  color:#101216;
  margin-bottom:24px;
}
.service-card h3{
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  color:#f5f7f5;
  font-size:1.3rem;
  margin-bottom:12px;
}
.service-card p{
  font-family:'Source Sans Pro',sans-serif;
  color:#b8bfb9;
  font-size:0.98rem;
  line-height:1.6;
  margin-bottom:20px;
}
.service-price{
  display:inline-block;
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:hsl(124,58%,82%);
  font-size:1.15rem;
  border-top:1px solid rgba(184,224,192,0.15);
  padding-top:16px;
  width:100%;
}
.service-price span{
  display:block;
  font-family:'Source Sans Pro',sans-serif;
  font-weight:400;
  color:#8a9189;
  font-size:0.85rem;
  margin-top:2px;
}
@media (max-width:767px){
  .services-section{padding:80px 0;}
  .service-card{padding:32px 24px;}
}

#numbers {
    background: #14171c;
    padding: 96px 0;
  }

  #numbers h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f5f7f5;
  }

  #numbers .lead-text {
    font-family: 'Source Sans Pro', sans-serif;
    color: #c7ccc7;
    max-width: 640px;
  }

  #numbers .stat-card {
    background: #1a1d23;
    border: 1px solid rgba(179, 217, 186, 0.18);
    border-radius: 20px;
    padding: 40px 28px;
    height: 100%;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  #numbers .stat-card:hover {
    border-color: hsl(132, 32%, 61%);
    transform: translateY(-4px);
  }

  #numbers .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: hsl(138, 27%, 45%, 0.18);
    color: hsl(124, 58%, 82%);
    font-size: 1.9rem;
  }

  #numbers .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: hsl(124, 58%, 82%);
    line-height: 1.1;
    display: inline-block;
    animation: countReveal 1.2s ease-out;
  }

  #numbers .stat-suffix {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: hsl(132, 32%, 61%);
  }

  #numbers .stat-label {
    font-family: 'Source Sans Pro', sans-serif;
    color: #e6e9e6;
    font-size: 1.05rem;
    margin-top: 8px;
    font-weight: 600;
  }

  #numbers .stat-context {
    font-family: 'Source Sans Pro', sans-serif;
    color: #9aa19a;
    font-size: 0.92rem;
    margin-top: 6px;
  }

  @keyframes countReveal {
    from {
      opacity: 0;
      transform: scale(0.85) translateY(10px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

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

#reviews {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #e8ebe6;
}
#reviews h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f1f4ee;
}
#reviews .lead-sub {
  color: #b7c0b8;
  max-width: 640px;
}
#reviews .review-card {
  background: #1a1d23;
  border: 1px solid rgba(163, 209, 168, 0.18);
  border-radius: 20px;
  padding: 28px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
#reviews .review-card:hover {
  border-color: hsl(132, 32%, 61%);
  transform: translateY(-3px);
}
#reviews .review-card.featured {
  background: hsl(138, 27%, 45%);
  border: none;
  color: #101216;
}
#reviews .review-card.featured .review-name, #reviews .review-card.featured .review-text, #reviews .review-card.featured .review-loc {
  color: #101216 !important;
}
#reviews .review-card.accent-border {
  border: 1px solid hsl(124, 58%, 82%);
}
#reviews .stars {
  color: hsl(124, 58%, 82%);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
#reviews .review-card.featured .stars {
  color: #0f2913;
}
#reviews .review-text {
  color: #d6dcd2;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
#reviews .review-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #f1f4ee;
  margin-bottom: 0;
}
#reviews .review-loc {
  color: #92a696;
  font-size: 0.88rem;
}
#reviews .review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
#reviews .review-card.featured .review-meta {
  border-top-color: rgba(16,18,22,0.2);
}
#reviews .badge-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: hsl(132, 32%, 61%);
  border: 1px solid hsl(132, 32%, 61%);
  border-radius: 999px;
  padding: 3px 10px;
  width: fit-content;
}
#reviews .review-card.featured .badge-tag {
  color: #101216;
  border-color: #101216;
}
#reviews .stats-strip {
  border-top: 1px solid rgba(163, 209, 168, 0.18);
  border-bottom: 1px solid rgba(163, 209, 168, 0.18);
  padding: 32px 0;
  margin-top: 80px;
}
#reviews .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: hsl(132, 32%, 61%);
}
#reviews .stat-label {
  color: #a9b3a9;
  font-size: 0.9rem;
}

#get-in-touch {
  background: linear-gradient(180deg, #14171c 0%, #101216 100%);
  padding: 96px 0;
  color: #f2f4f2;
  font-family: 'Source Sans Pro', sans-serif;
}
#get-in-touch h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f2f4f2;
}
#get-in-touch .lead-text {
  color: #c7ccc7;
  font-size: 1.1rem;
  max-width: 620px;
}
#get-in-touch .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(160, 210, 170, 0.2);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#get-in-touch .contact-panel h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(132, 32%, 61%);
  font-size: 1.3rem;
  margin-bottom: 24px;
}
#get-in-touch .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#get-in-touch .contact-info-list li {
  margin-bottom: 18px;
  color: #e6e9e6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#get-in-touch .contact-info-list li span.icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: hsl(138, 27%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101216;
  font-size: 1rem;
}
#get-in-touch .contact-info-list a {
  color: #f2f4f2;
  text-decoration: none;
  border-bottom: 1px solid hsl(132, 32%, 61%);
}
#get-in-touch .contact-info-list a:hover {
  color: hsl(124, 58%, 82%);
}
#get-in-touch .find-us-note {
  font-size: 0.95rem;
  color: #b7bdb7;
  margin-top: -8px;
  margin-bottom: 18px;
  padding-left: 50px;
}
#get-in-touch .find-us-note a {
  color: hsl(132, 32%, 61%);
  text-decoration: underline;
}
#get-in-touch .hours-block {
  border-top: 1px solid rgba(160, 210, 170, 0.15);
  padding-top: 20px;
  color: #d3d7d3;
  font-size: 0.95rem;
  line-height: 1.8;
}
#get-in-touch .hours-block strong {
  color: #f2f4f2;
}
#get-in-touch .form-panel {
  background: #1a1d23;
  border: 1px solid rgba(160, 210, 170, 0.2);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#get-in-touch .form-panel h3 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(132, 32%, 61%);
  font-size: 1.3rem;
  margin-bottom: 24px;
}
#get-in-touch .form-control-dark {
  background: #101216;
  border: 1px solid rgba(160, 210, 170, 0.25);
  color: #f2f4f2;
  border-radius: 12px;
  padding: 12px 16px;
}
#get-in-touch .form-control-dark:focus {
  background: #101216;
  color: #f2f4f2;
  border-color: hsl(132, 32%, 61%);
  box-shadow: 0 0 0 0.2rem rgba(159, 209, 170, 0.25);
}
#get-in-touch .form-control-dark::placeholder {
  color: #8a908a;
}
#get-in-touch .btn-send {
  background: hsl(132, 32%, 61%);
  color: #101216;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.2s ease;
}
#get-in-touch .btn-send:hover {
  background: hsl(138, 27%, 45%);
  color: #ffffff;
}
#get-in-touch label.form-label {
  color: #d3d7d3;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

#notice{
  background:#15181e;
  padding:96px 0;
  font-family:'Source Sans Pro',sans-serif;
  color:#e7e9ec;
}
#notice h2{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:hsl(132, 32%, 61%);
  margin-bottom:24px;
}
#notice .notice-panel{
  background:#1a1d23;
  border:1px solid rgba(180, 220, 190, 0.15);
  border-radius:20px;
  padding:40px;
}
#notice .icon-wrap{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:16px;
  background:hsl(124, 58%, 82%);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:20px;
}
#notice .icon-wrap i{
  font-size:1.6rem;
  color:#1a1d23;
}
#notice p{
  font-size:1.02rem;
  line-height:1.75;
  color:#c9ccd1;
  margin-bottom:0;
}
@media (max-width:576px){
  #notice{padding:64px 0;}
  #notice .notice-panel{padding:28px;}
  #notice .d-flex{flex-direction:column;}
  #notice .icon-wrap{margin-bottom:16px;margin-right:0;}
}
