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

:root {
  --primary: hsl(270, 57%, 64%);
  --secondary: hsl(284, 47%, 86%);
  --accent: hsl(90, 83%, 74%);
  --bg-dark: #101216;
  --bg-panel: #1a1d23;
}

body{
  background-color: var(--bg-dark);
  color: #f2f2f2;
  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 #2a2d34;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.navbar-brand{
  color: #f2f2f2 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar-nav .nav-link{
  color: #e8e8e8 !important;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  padding: 0.5rem 1.2rem !important;
}
.navbar-nav .nav-link:hover{
  color: var(--accent) !important;
}
.navbar-toggler{
  border-color: var(--primary);
}
.navbar-toggler-icon{
  filter: invert(1);
}

#portfolio-main {
  background: #101216;
  color: #f2f2f2;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}
#portfolio-main h1,
#portfolio-main h2,
#portfolio-main h3,
#portfolio-main h4 {
  font-family: 'Montserrat', sans-serif;
  color: #f8f9fa;
}
#portfolio-main .intro {
  max-width: 720px;
  margin-bottom: 72px;
}
#portfolio-main .intro p {
  color: #d5d5d5;
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-main .badge-category {
  background: hsl(270, 57%, 64%);
  color: #101216;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 6px 12px;
  font-size: 0.8rem;
}
#portfolio-main .case-card {
  background: #16181d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#portfolio-main .case-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1d23;
}
#portfolio-main .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-main .case-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#portfolio-main .case-body p {
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}
#portfolio-main .case-body h3 {
  font-size: 1.2rem;
  margin: 14px 0 10px;
}
#portfolio-main .btn-detail {
  background: transparent;
  border: 1px solid hsl(270, 57%, 64%);
  color: hsl(270, 57%, 64%);
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 8px 18px;
  margin-top: 16px;
  align-self: flex-start;
}
#portfolio-main .btn-detail:hover {
  background: hsl(270, 57%, 64%);
  color: #101216;
}
#portfolio-main .modal-content {
  background: #16181d;
  color: #f2f2f2;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
}
#portfolio-main .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
#portfolio-main .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
}
#portfolio-main .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#portfolio-main .btn-close {
  filter: invert(1);
}
#portfolio-main .details-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
#portfolio-main .details-table td {
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #d5d5d5;
  font-size: 0.92rem;
}
#portfolio-main .details-table td:first-child {
  color: #a9a9a9;
  width: 40%;
}
#portfolio-main .btn-modal-link {
  background: hsl(270, 57%, 64%);
  color: #101216;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 22px;
}
#portfolio-main .btn-modal-link:hover {
  background: hsl(284, 47%, 86%);
  color: #101216;
}
#portfolio-main .summary-panel {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
  margin-top: 96px;
  background: #16181d;
}
#portfolio-main .summary-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 0;
}
#portfolio-main .summary-panel dt {
  color: #a9a9a9;
  font-size: 0.9rem;
}
#portfolio-main .summary-panel dd {
  color: #f2f2f2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0;
}
#portfolio-main .cta-block {
  margin-top: 96px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 72px;
}
#portfolio-main .cta-block .btn-cta {
  background: hsl(90, 83%, 74%);
  color: #101216;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  font-size: 1.05rem;
}
#portfolio-main .cta-block .btn-cta:hover {
  background: hsl(270, 57%, 64%);
  color: #101216;
}
@media (max-width: 576px) {
  #portfolio-main .summary-panel dl {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #14161b;
  color: #e8e6ec;
  font-family: 'Source Sans Pro', sans-serif;
  border-top: 1px solid hsl(284, 47%, 86%, 0.2);
  padding: 96px 0 32px;
}
footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(90, 83%, 74%);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
footer p, footer li, footer a {
  color: #cfcdd6;
}
footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer a:hover {
  color: hsl(270, 57%, 74%);
}
footer .footer-brand {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 48px 0 24px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid hsl(270, 57%, 64%);
  color: #fff;
  margin-right: 12px;
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-icons a:hover {
  background: hsl(270, 57%, 64%);
  color: #101216;
}
.footer-bottom-text {
  color: #8f8d97;
  font-size: 0.9rem;
}

#cookieStrip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #181a20;
  color: #e8e6ec;
  border-top: 2px solid hsl(270, 57%, 64%);
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Source Sans Pro', sans-serif;
}
#cookieStrip h6 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(90, 83%, 74%);
  margin-bottom: 8px;
  font-size: 1rem;
}
#cookieStrip p {
  font-size: 0.85rem;
  color: #cfcdd6;
  margin-bottom: 8px;
}
#cookieStrip .cookie-cats {
  font-size: 0.8rem;
  color: #b8b6c0;
  margin-bottom: 12px;
}
#cookieStrip .cookie-cats span {
  color: hsl(284, 47%, 86%);
  font-weight: 600;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  width: 100%;
}
.btn-accept-all {
  background: hsl(270, 57%, 64%);
  color: #101216;
  font-weight: 700;
}
.btn-accept-all:hover {
  background: hsl(270, 57%, 54%);
  color: #fff;
}
.btn-reject {
  background: transparent;
  border: 1px solid hsl(284, 47%, 86%);
  color: #e8e6ec;
  font-weight: 700;
}
.btn-reject:hover {
  background: hsl(284, 47%, 86%);
  color: #101216;
}
.cookie-manage-link {
  font-size: 0.8rem;
  color: hsl(90, 83%, 74%);
  text-decoration: underline;
}
.cookie-manage-link:hover {
  color: #fff;
}

#about-body {
  background-color: #14161b;
  color: #f0f0f0;
  font-family: 'Source Sans Pro', sans-serif;
  padding: 96px 0;
}

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

#about-body .eyebrow {
  color: hsl(90, 83%, 74%);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
}

#about-body .lead-text {
  color: hsl(284, 47%, 86%);
  font-size: 1.2rem;
}

#about-body .divider {
  height: 1px;
  background-color: rgba(255,255,255,0.15);
  border: none;
  margin: 80px 0;
}

#about-body img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.15);
}

#about-body .panel {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px;
  height: 100%;
}

#about-body .panel h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

#about-body .step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(270, 57%, 64%);
  margin-bottom: 8px;
}

#about-body .team-card {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  height: 100%;
}

#about-body .team-card .role {
  color: hsl(90, 83%, 74%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

#about-body .team-card .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

#about-body .stat-block {
  border-left: 2px solid hsl(270, 57%, 64%);
  padding-left: 20px;
}

#about-body .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

#about-body .stat-label {
  color: hsl(284, 47%, 86%);
  font-size: 0.9rem;
}

#about-body .btn-accent {
  background-color: hsl(90, 83%, 74%);
  color: #14161b;
  border: none;
  border-radius: 0;
  padding: 14px 36px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

#about-body .btn-accent:hover {
  background-color: hsl(270, 57%, 64%);
  color: #ffffff;
}

#about-body .cta-box {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 56px 40px;
  text-align: center;
}

@media (max-width: 767px) {
  #about-body {
    padding: 64px 0;
  }
  #about-body .divider {
    margin: 56px 0;
  }
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #101216 0%, #1a1d23 100%);
  color: #f8f9fa;
  display: flex;
  align-items: center;
  font-family: 'Source Sans Pro', sans-serif;
}

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

.hero-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: hsl(284, 47%, 86%);
  margin-top: 1rem;
}

.hero-section p.hero-desc {
  color: #cfd2d8;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(270, 57%, 64%);
  color: #101216;
  border: 1px solid hsl(270, 57%, 64%);
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 0;
  text-decoration: none;
  margin-top: 2.5rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hero-cta:hover {
  background-color: transparent;
  color: hsl(270, 57%, 64%);
}

.hero-img-wrap {
  width: 100%;
}

.hero-img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(248, 249, 250, 0.15);
}

@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
  }
  .hero-section p.hero-desc {
    max-width: 100%;
  }
  .hero-img-wrap {
    margin-top: 3rem;
  }
}

#company {
  background-color: #14161b;
  color: #f2f2f2;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
#company h2, #company h3 {
  font-family: 'Montserrat', sans-serif;
}
#company .heading-accent {
  color: hsl(90, 83%, 74%);
}
#company .lead-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d8d8d8;
}
#company .divider-line {
  width: 60px;
  height: 3px;
  background-color: hsl(270, 57%, 64%);
  margin-bottom: 32px;
}
#company img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid hsl(284, 47%, 86%);
  display: block;
}
#company .values-panel {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 24px;
  height: 100%;
  background-color: #1a1d23;
}
#company .values-panel strong {
  color: hsl(270, 57%, 64%);
  display: block;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
#company .team-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px;
  background-color: #1a1d23;
  height: 100%;
}
#company .team-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 4px;
}
#company .team-card .role {
  color: hsl(90, 83%, 74%);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}
#company .stat-line {
  color: #b7b7b7;
  font-size: 0.95rem;
}

#projects {
  background: #14161b;
  padding: 96px 0;
  color: #f2f2f2;
}
#projects h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f2f2f2;
}
#projects .lead-text {
  font-family: 'Source Sans Pro', sans-serif;
  color: #c9c9d1;
  max-width: 640px;
}
#projects .case-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s ease;
}
#projects .case-card:hover {
  border-color: hsl(270, 57%, 64%);
}
#projects .case-img-wrap {
  width: 100%;
  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: 24px;
}
#projects .case-badge {
  display: inline-block;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #101216;
  background: hsl(90, 83%, 74%);
  padding: 4px 12px;
  margin-bottom: 12px;
}
#projects .case-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #f2f2f2;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#projects .case-desc {
  font-family: 'Source Sans Pro', sans-serif;
  color: #b9b9c3;
  font-size: 0.95rem;
  line-height: 1.55;
}
#projects .btn-case {
  font-family: 'Source Sans Pro', sans-serif;
  border: 1px solid hsl(270, 57%, 64%);
  color: hsl(270, 57%, 64%);
  background: transparent;
  border-radius: 0;
  padding: 8px 20px;
  margin-top: 16px;
  font-size: 0.9rem;
}
#projects .btn-case:hover {
  background: hsl(270, 57%, 64%);
  color: #101216;
}
#projects .modal-content {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: #f2f2f2;
}
#projects .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#projects .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}
#projects .modal-title {
  font-family: 'Montserrat', sans-serif;
  color: #f2f2f2;
}
#projects .modal-body p {
  font-family: 'Source Sans Pro', sans-serif;
  color: #c9c9d1;
}
#projects .btn-close {
  filter: invert(1);
}
#projects .modal img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

#contact {
  background: #14161b;
  color: #f4f4f6;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
#contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #f4f4f6;
  margin-bottom: 16px;
}
#contact .lead-text {
  color: #c9c9cf;
  margin-bottom: 48px;
}
#contact .panel {
  background: #1a1d23;
  border: 1px solid hsl(270, 57%, 64%, 0.3);
  padding: 40px;
  height: 100%;
}
#contact label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #f4f4f6;
  margin-bottom: 6px;
  display: block;
}
#contact .form-control {
  background: #101216;
  border: 1px solid hsl(284, 47%, 86%, 0.3);
  color: #f4f4f6;
  border-radius: 0;
  padding: 12px 14px;
  margin-bottom: 20px;
}
#contact .form-control:focus {
  background: #101216;
  color: #f4f4f6;
  border-color: hsl(270, 57%, 64%);
  box-shadow: none;
}
#contact .form-control::placeholder {
  color: #8a8a92;
}
#contact .btn-submit {
  background: hsl(270, 57%, 64%);
  color: #101216;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 0;
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
}
#contact .btn-submit:hover {
  background: hsl(90, 83%, 74%);
  color: #101216;
}
#contact .info-block {
  padding-left: 0;
}
#contact .info-item {
  border-bottom: 1px solid hsl(284, 47%, 86%, 0.2);
  padding: 24px 0;
}
#contact .info-item:first-child {
  padding-top: 0;
}
#contact .info-item h5 {
  font-family: 'Montserrat', sans-serif;
  color: hsl(90, 83%, 74%);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
#contact .info-item p, #contact .info-item a {
  color: #e6e6ea;
  margin-bottom: 4px;
  text-decoration: none;
}
#contact .info-item a:hover {
  color: hsl(270, 57%, 64%);
  text-decoration: underline;
}
#contact .map-link {
  color: hsl(284, 47%, 86%);
  font-size: 0.95rem;
}
#contact .map-link:hover {
  color: hsl(90, 83%, 74%);
}

#notice{
  background:#15171c;
  color:#e8e6ec;
  padding:96px 0;
  font-family:'Source Sans Pro',sans-serif;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
#notice h2{
  font-family:'Montserrat',sans-serif;
  color:#fff;
  font-weight:700;
  letter-spacing:0.02em;
  margin-bottom:32px;
}
#notice .icon-wrap{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid hsl(270,57%,64%);
  color:hsl(90,83%,74%);
  font-size:1.6rem;
  flex-shrink:0;
}
#notice .notice-panel{
  border:1px solid rgba(255,255,255,0.12);
  background:#1a1d23;
  padding:40px;
}
#notice p{
  color:#c9c7d1;
  font-size:1.02rem;
  line-height:1.8;
  margin-bottom:0;
}
@media (max-width:767px){
  #notice{padding:72px 0;}
  #notice .notice-panel{padding:28px;}
}



  

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

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(120, 80, 180, 0.15);
    border: 1px solid var(--secondary);
  }

  .thankyou-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #3a2a4d;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1.9rem;
  }

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

  .icon-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem rgba(150, 100, 200, 0.35);
    animation: popIn 0.5s ease-out;
  }

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

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

  .info-list {
    text-align: left;
    background: var(--secondary);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
  }

  .info-list li {
    color: #4a3f57;
    padding: 0.4rem 0;
    font-size: 0.98rem;
  }

  .info-list li i,
  .info-list li svg {
    color: var(--primary);
    margin-right: 0.6rem;
  }

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

  .btn-thankyou:hover {
    background-color: hsl(270, 57%, 56%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem rgba(150, 100, 200, 0.4);
  }

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

#contact-main {
  background: #101216;
  color: #f0f0f0;
  padding: 96px 0;
  font-family: 'Source Sans Pro', sans-serif;
}
#contact-main h1, #contact-main h2, #contact-main h3 {
  font-family: 'Montserrat', sans-serif;
}
#contact-main .lead-text {
  color: hsl(284, 47%, 86%);
  max-width: 640px;
}
#contact-main .panel {
  background: #16181d;
  border: 1px solid hsl(270, 57%, 64%, 0.35);
  padding: 40px;
}
#contact-main .form-label {
  color: #f0f0f0;
  font-weight: 600;
}
#contact-main .form-control {
  background: #1a1d23;
  border: 1px solid hsl(284, 47%, 86%, 0.3);
  color: #f0f0f0;
  border-radius: 0;
}
#contact-main .form-control:focus {
  background: #1a1d23;
  color: #f0f0f0;
  border-color: hsl(270, 57%, 64%);
  box-shadow: 0 0 0 0.2rem hsl(270, 57%, 64%, 0.25);
}
#contact-main .form-control::placeholder {
  color: #8a8a8a;
}
#contact-main .btn-primary-custom {
  background: hsl(270, 57%, 64%);
  color: #101216;
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 0;
  transition: background 0.2s ease;
}
#contact-main .btn-primary-custom:hover {
  background: hsl(90, 83%, 74%);
  color: #101216;
}
#contact-main .info-block {
  border-top: 1px solid hsl(284, 47%, 86%, 0.2);
  padding-top: 24px;
  margin-top: 24px;
}
#contact-main .info-block:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
#contact-main .info-label {
  color: hsl(90, 83%, 74%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
#contact-main a {
  color: hsl(284, 47%, 86%);
  text-decoration: none;
}
#contact-main a:hover {
  color: hsl(90, 83%, 74%);
}
#contact-main .map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
  border-bottom: 1px solid hsl(90, 83%, 74%);
}
#contact-main .divider-line {
  height: 1px;
  background: hsl(270, 57%, 64%, 0.4);
  width: 60px;
  margin: 20px 0 32px;
}
#contact-main .cta-final {
  text-align: center;
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid hsl(284, 47%, 86%, 0.2);
}
