@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Raleway:wght@400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&family=Raleway:wght@400;500;600&display=swap');

body {
    background-color: #14161b;
    color: #f2f0ec;
    font-family: 'Raleway', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
  }
  .navbar {
    background-color: #14161b;
    border-bottom: 1px solid rgba(242, 240, 236, 0.1);
  }
  .navbar-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #f2f0ec !important;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .navbar-brand img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .navbar-nav .nav-link {
    color: #f2f0ec;
    font-weight: 600;
    margin-left: 1rem;
    transition: color 0.2s ease;
  }
  .navbar-nav .nav-link:hover {
    color: hsl(27, 44%, 53%);
  }
  .navbar-toggler {
    border-color: rgba(242, 240, 236, 0.3);
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }

footer {
  background: #14161b;
  color: #e8e6e2;
  font-family: 'Raleway', sans-serif;
  border-top: 1px solid hsl(41, 43%, 71%, 0.2);
  padding: 64px 0 32px;
}
footer h5, footer h6 {
  font-family: 'Inter', sans-serif;
  color: hsl(41, 43%, 71%);
}
footer a {
  color: #cfcdc9;
  text-decoration: none;
}
footer a:hover {
  color: hsl(27, 44%, 53%);
}
footer .footer-desc {
  color: #b8b6b2;
  font-size: 0.95rem;
  line-height: 1.7;
}
footer hr {
  border-color: rgba(255,255,255,0.1);
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid hsl(41, 43%, 71%, 0.3);
  color: #e8e6e2;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.footer-socials a:hover {
  background: hsl(27, 44%, 53%);
  border-color: hsl(27, 44%, 53%);
  color: #fff;
}
.footer-bottom {
  font-size: 0.85rem;
  color: #999691;
}
#privacyBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: #1a1d23;
  border-top: 1px solid hsl(41, 43%, 71%, 0.3);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Raleway', sans-serif;
  color: #e8e6e2;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
#privacyBanner h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: hsl(41, 43%, 71%);
  margin-bottom: 8px;
}
#privacyBanner p, #privacyBanner li {
  font-size: 0.85rem;
  color: #cfcdc9;
}
#privacyBanner ul {
  padding-left: 18px;
  margin-bottom: 12px;
}
.cookie-btn {
  border-radius: 14px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(27, 44%, 53%);
  color: #fff;
}
.btn-accept-all:hover {
  background: hsl(27, 44%, 43%);
  color: #fff;
}
.btn-reject-optional {
  background: transparent;
  border: 1px solid hsl(207, 52%, 66%);
  color: hsl(207, 52%, 66%);
}
.btn-reject-optional:hover {
  background: hsl(207, 52%, 66%);
  color: #101216;
}
.cookie-manage-link {
  color: hsl(41, 43%, 71%);
  font-size: 0.85rem;
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: hsl(27, 44%, 53%);
}

#about-main {
  background: #101216;
  color: #f2f0ec;
  font-family: 'Raleway', sans-serif;
  padding: 96px 0;
}
#about-main h1, #about-main h2, #about-main h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
#about-main .hero-heading {
  font-size: 2.6rem;
  color: #f2f0ec;
  margin-bottom: 24px;
}
#about-main .lead-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #cfcac0;
  margin-bottom: 20px;
}
#about-main .accent-text {
  color: hsl(41, 43%, 71%);
}
#about-main img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
#about-main .section-block {
  margin-bottom: 52px;
}
#about-main .value-card {
  background: #181b21;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
#about-main .value-card h3 {
  font-size: 1.15rem;
  color: hsl(27, 44%, 53%);
  margin-bottom: 10px;
}
#about-main .value-card p {
  color: #cfcac0;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#about-main .team-card {
  background: #181b21;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}
#about-main .team-card h4 {
  font-family: 'Inter', sans-serif;
  color: #f2f0ec;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
#about-main .team-card .role {
  color: hsl(207, 52%, 66%);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
#about-main .team-card p.desc {
  color: #cfcac0;
  font-size: 0.9rem;
  margin-bottom: 0;
}
#about-main .facts-table {
  background: #181b21;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 24px;
}
#about-main .facts-table table {
  color: #f2f0ec;
  margin-bottom: 0;
}
#about-main .facts-table td {
  padding: 14px 8px;
  border-color: rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
#about-main .facts-table td:first-child {
  color: #cfcac0;
  width: 55%;
}
#about-main .facts-table td:last-child {
  color: hsl(41, 43%, 71%);
  font-weight: 600;
}
#about-main .cta-box {
  background: hsl(27, 44%, 53%);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
}
#about-main .cta-box h2 {
  color: #101216;
  margin-bottom: 14px;
}
#about-main .cta-box p {
  color: #1a1d23;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
#about-main .cta-box .btn {
  background: #101216;
  color: #f2f0ec;
  border: none;
  padding: 12px 34px;
  border-radius: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}
#about-main .cta-box .btn:hover {
  background: #1a1d23;
  color: hsl(41, 43%, 71%);
}
@media (max-width: 767px) {
  #about-main .hero-heading { font-size: 1.9rem; }
  #about-main { padding: 56px 0; }
}



.hero-email {
  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) 45%, rgba(16,18,22,0.92) 100%), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Raleway', sans-serif;
  color: #f5f5f5;
}

.hero-email .hero-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-email .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid hsl(41, 43%, 71%);
  color: hsl(41, 43%, 71%);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.03);
}

.hero-email h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: #f8f9fa;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-email h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: hsl(207, 52%, 66%);
  margin-bottom: 22px;
  max-width: 750px;
}

.hero-email p.lead-desc {
  font-size: 1.1rem;
  color: #d7d7d7;
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-email .btn-hero {
  background-color: hsl(27, 44%, 53%);
  color: #101216;
  border: none;
  border-radius: 20px;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-email .btn-hero:hover {
  background-color: hsl(41, 43%, 71%);
  color: #101216;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.hero-email .scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: #cfcfcf;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

@media (max-width: 576px) {
  .hero-email .hero-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-email .btn-hero {
    width: 100%;
    justify-content: center;
  }
}

#works {
  background: #101216;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #f1f1f1;
}
#works h2, #works h3, #works h4 {
  font-family: 'Inter', sans-serif;
}
#works .section-intro {
  max-width: 720px;
  margin-bottom: 56px;
}
#works .badge-cat {
  background: hsl(207, 52%, 66%);
  color: #101216;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 0.8rem;
  display: inline-block;
}
#works .case-card {
  background: #16181d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
#works .case-card:hover {
  border-color: hsl(27, 44%, 53%);
  transform: translateY(-4px);
}
#works .case-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1d23;
}
#works .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works .case-body {
  padding: 24px;
}
#works .case-body h3 {
  font-size: 1.15rem;
  color: #f8f9fa;
  margin: 14px 0 10px;
}
#works .case-body p {
  color: #c9ccd1;
  font-size: 0.92rem;
  line-height: 1.55;
}
#works .btn-view {
  border: 1px solid hsl(41, 43%, 71%);
  color: hsl(41, 43%, 71%);
  background: transparent;
  border-radius: 14px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.25s ease, color 0.25s ease;
}
#works .btn-view:hover {
  background: hsl(41, 43%, 71%);
  color: #101216;
}
#works .modal-content {
  background: #16181d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: #f1f1f1;
}
#works .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#works .modal-header .btn-close {
  filter: invert(1);
}
#works .modal-body img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 20px;
}
#works .modal-title {
  font-family: 'Inter', sans-serif;
  color: #f8f9fa;
}
#works .modal-body p {
  color: #c9ccd1;
  line-height: 1.6;
}
#works .modal-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
#works .modal-stats div {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: hsl(41, 43%, 71%);
}

.services-section {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}
.services-section h2 {
  font-family: 'Inter', sans-serif;
  color: #f5f2ee;
  font-weight: 700;
}
.services-section .lead-text {
  color: #b9b6b0;
  max-width: 640px;
}
.services-list {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border-radius: 16px;
}
.services-list .row > div:nth-child(odd) .service-item {
  border-right: none;
}
@media (min-width: 992px) {
  .services-list .row > div:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
}
.service-item:hover {
  background: rgba(207, 170, 122, 0.06);
  transform: translateX(4px);
  border-color: hsl(27, 44%, 53%);
}
.service-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 170, 122, 0.12);
  color: hsl(41, 43%, 71%);
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-item:hover .service-icon {
  background: hsl(27, 44%, 53%);
  color: #14161b;
}
.service-content h3 {
  font-family: 'Inter', sans-serif;
  color: #f5f2ee;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-content p {
  color: #b9b6b0;
  font-size: 0.94rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-price {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: hsl(207, 52%, 66%);
  font-size: 0.95rem;
}
.divider-note {
  color: #8a8781;
  font-size: 0.9rem;
}

#results {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
}

#results h2 {
  font-family: 'Inter', sans-serif;
  color: #f5f2ee;
  font-weight: 700;
}

#results .lead-text {
  color: #c9c4bc;
  max-width: 640px;
}

#results .stat-card {
  background: #1a1d23;
  border: 1px solid rgba(196, 166, 118, 0.25);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#results .stat-card:hover {
  transform: translateY(-6px);
  border-color: hsl(27, 44%, 53%);
}

#results .stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(27, 44%, 53%, 0.15);
  color: hsl(41, 43%, 71%);
  font-size: 1.8rem;
}

#results .stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: hsl(207, 52%, 66%);
  display: inline-block;
  animation: countPulse 1.8s ease-out;
}

@keyframes countPulse {
  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);
  }
}

#results .stat-label {
  color: #d8d3ca;
  font-size: 1rem;
  margin-top: 6px;
  font-weight: 500;
}

#results .stat-context {
  color: #8f8a82;
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 767px) {
  #results .stat-number {
    font-size: 2.1rem;
  }
}

#contact {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #e8e6e1;
}
#contact h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #f5f3ef;
}
#contact p.lead-text {
  color: #b9b6b0;
  font-size: 1.05rem;
}
#contact .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contact .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
#contact .contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: hsl(27, 44%, 53%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101216;
  font-size: 1.1rem;
}
#contact .contact-info-item h6 {
  font-family: 'Inter', sans-serif;
  color: #f5f3ef;
  margin-bottom: 4px;
  font-weight: 600;
}
#contact .contact-info-item p, #contact .contact-info-item a {
  color: #b9b6b0;
  margin-bottom: 0;
  text-decoration: none;
}
#contact .contact-info-item a:hover {
  color: hsl(41, 43%, 71%);
}
#contact .map-link {
  color: hsl(207, 52%, 66%);
  text-decoration: underline;
  font-size: 0.95rem;
}
#contact .map-link:hover {
  color: hsl(41, 43%, 71%);
}
#contact .form-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
#contact .form-panel .form-label {
  color: #d9d6d0;
  font-weight: 500;
  font-size: 0.92rem;
}
#contact .form-panel .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5f3ef;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact .form-panel .form-control:focus {
  background: #101216;
  color: #f5f3ef;
  border-color: hsl(27, 44%, 53%);
  box-shadow: 0 0 0 0.2rem rgba(196, 141, 74, 0.25);
}
#contact .form-panel .form-control::placeholder {
  color: #7c7a75;
}
#contact .btn-submit {
  background: hsl(27, 44%, 53%);
  color: #101216;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#contact .btn-submit:hover {
  background: hsl(41, 43%, 71%);
  color: #101216;
}
#contact .hours-box {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
#contact .hours-box p {
  color: #b9b6b0;
  margin-bottom: 4px;
  font-size: 0.92rem;
}
@media (max-width: 767px) {
  #contact .contact-panel, #contact .form-panel {
    padding: 28px;
  }
}

#disclaimer {
  background-color: #14161b;
  padding: 96px 0;
  font-family: 'Raleway', sans-serif;
  color: #e8e6e2;
}
#disclaimer .disclaimer-panel {
  background-color: #1a1d23;
  border: 1px solid rgba(214, 178, 122, 0.25);
  border-radius: 20px;
  padding: 56px;
}
#disclaimer h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #f2ede4;
  margin-bottom: 24px;
}
#disclaimer .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: hsla(207, 52%, 66%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
#disclaimer .icon-wrap i {
  font-size: 1.6rem;
  color: hsl(207, 52%, 66%);
}
#disclaimer p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #cfccc6;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #disclaimer .disclaimer-panel {
    padding: 32px 24px;
  }
}

#portfolio-page {
  background: #14161b;
  color: #e8e6e2;
  font-family: 'Raleway', sans-serif;
  padding: 96px 0;
}
#portfolio-page h1,
#portfolio-page h2,
#portfolio-page h3,
#portfolio-page h4 {
  font-family: 'Inter', sans-serif;
}
#portfolio-page .page-header {
  margin-bottom: 56px;
}
#portfolio-page .page-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #f5f2ec;
}
#portfolio-page .page-header p {
  color: #b9b4ac;
  max-width: 680px;
  font-size: 1.05rem;
}
#portfolio-page .case-card {
  background: #1a1d23;
  border: 1px solid rgba(232, 208, 168, 0.15);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
#portfolio-page .case-card:hover {
  border-color: hsl(27, 44%, 53%);
  transform: translateY(-4px);
}
#portfolio-page .case-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101216;
}
#portfolio-page .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-page .case-body {
  padding: 24px;
}
#portfolio-page .badge-category {
  background: hsl(207, 52%, 66%);
  color: #101216;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
#portfolio-page .case-body h3 {
  font-size: 1.2rem;
  color: #f5f2ec;
  margin-bottom: 10px;
}
#portfolio-page .case-body p {
  color: #b9b4ac;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
#portfolio-page .btn-detail {
  background: transparent;
  border: 1px solid hsl(27, 44%, 53%);
  color: hsl(41, 43%, 71%);
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}
#portfolio-page .btn-detail:hover {
  background: hsl(27, 44%, 53%);
  color: #101216;
}
#portfolio-page .modal-content {
  background: #1a1d23;
  color: #e8e6e2;
  border: 1px solid rgba(232, 208, 168, 0.2);
  border-radius: 20px;
}
#portfolio-page .modal-header {
  border-bottom: 1px solid rgba(232, 208, 168, 0.15);
}
#portfolio-page .modal-footer {
  border-top: 1px solid rgba(232, 208, 168, 0.15);
}
#portfolio-page .btn-close {
  filter: invert(1);
}
#portfolio-page .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}
#portfolio-page table {
  color: #e8e6e2;
  border-color: rgba(232, 208, 168, 0.2);
}
#portfolio-page table th {
  color: hsl(41, 43%, 71%);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
#portfolio-page table td,
#portfolio-page table th {
  border-color: rgba(232, 208, 168, 0.15) !important;
  vertical-align: middle;
}
#portfolio-page .info-strip {
  background: #1a1d23;
  border: 1px solid rgba(232, 208, 168, 0.15);
  border-radius: 20px;
  padding: 40px;
  margin-top: 56px;
}
#portfolio-page .info-strip h2 {
  color: #f5f2ec;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
#portfolio-page .cta-block {
  margin-top: 56px;
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, hsl(27, 44%, 53%), hsl(41, 43%, 71%));
  border-radius: 20px;
}
#portfolio-page .cta-block h2 {
  color: #101216;
  font-size: 1.9rem;
  margin-bottom: 12px;
}
#portfolio-page .cta-block p {
  color: #26201a;
  margin-bottom: 22px;
  font-size: 1.02rem;
}
#portfolio-page .btn-cta {
  background: #101216;
  color: #f5f2ec;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.25s ease;
}
#portfolio-page .btn-cta:hover {
  opacity: 0.85;
  color: #f5f2ec;
}
@media (max-width: 767.98px) {
  #portfolio-page .page-header h1 {
    font-size: 2rem;
  }
  #portfolio-page .info-strip {
    padding: 24px;
  }
}

#contact-page {
  background: #101216;
  color: #f2f0ed;
  font-family: 'Raleway', sans-serif;
  padding: 96px 0;
}
#contact-page h1, #contact-page h2, #contact-page h3 {
  font-family: 'Inter', sans-serif;
}
#contact-page .contact-lead {
  color: hsl(41, 43%, 71%);
  max-width: 640px;
}
#contact-page .panel {
  background: #16191f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
#contact-page label {
  color: #f2f0ed;
  font-weight: 600;
  margin-bottom: 6px;
}
#contact-page .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f2f0ed;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact-page .form-control:focus {
  background: #101216;
  color: #f2f0ed;
  border-color: hsl(207, 52%, 66%);
  box-shadow: 0 0 0 0.2rem hsla(207, 52%, 66%, 0.25);
}
#contact-page .form-control::placeholder {
  color: rgba(242,240,237,0.4);
}
#contact-page .btn-primary-custom {
  background: hsl(27, 44%, 53%);
  border: none;
  color: #101216;
  font-weight: 700;
  border-radius: 14px;
  padding: 14px 32px;
  transition: background 0.2s ease;
}
#contact-page .btn-primary-custom:hover {
  background: hsl(41, 43%, 71%);
  color: #101216;
}
#contact-page .info-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
#contact-page .info-item:first-of-type {
  border-top: none;
}
#contact-page .info-label {
  color: hsl(207, 52%, 66%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
#contact-page a {
  color: hsl(41, 43%, 71%);
  text-decoration: none;
}
#contact-page a:hover {
  color: hsl(27, 44%, 53%);
}
#contact-page .map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.92rem;
  border-bottom: 1px solid hsl(41, 43%, 71%);
}
#contact-page .cta-box {
  background: hsl(27, 44%, 53%);
  border-radius: 20px;
  padding: 40px;
  color: #101216;
}
#contact-page .cta-box h3 {
  color: #101216;
}
#contact-page .cta-box a.btn-cta {
  background: #101216;
  color: #f2f0ed;
  border-radius: 14px;
  padding: 12px 28px;
  font-weight: 700;
  display: inline-block;
}
#contact-page .cta-box a.btn-cta:hover {
  background: #000;
  color: #fff;
}



.thankyou-section {
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, hsl(41, 43%, 92%) 0%, hsl(207, 52%, 94%) 100%);
}

.thankyou-card {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  border-top: 6px solid hsl(27, 44%, 53%);
}

.thankyou-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: hsl(27, 44%, 33%);
  margin-bottom: 1.25rem;
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(27, 44%, 53%) 0%, hsl(41, 43%, 71%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1.5rem hsla(27, 44%, 53%, 0.35);
  animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: #fff;
}

.thankyou-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.thankyou-note {
  background: hsl(207, 52%, 96%);
  border-left: 4px solid hsl(207, 52%, 66%);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  color: #444;
  margin: 1.5rem 0;
}

.thankyou-note i {
  color: hsl(207, 52%, 50%);
  margin-right: 0.5rem;
}

.btn-thankyou {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background-color: hsl(27, 44%, 53%);
  border: none;
  color: #fff;
  padding: 0.75rem 2.25rem;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.35rem 1rem hsla(27, 44%, 53%, 0.35);
}

.btn-thankyou:hover {
  background-color: hsl(27, 44%, 45%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem hsla(27, 44%, 53%, 0.45);
}

.thankyou-badge {
  display: inline-block;
  background: hsl(41, 43%, 71%);
  color: #5a4a2e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2.25rem 1.25rem;
  }
  .thankyou-heading {
    font-size: 1.5rem;
  }
}
