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

:root {
  --primary: hsl(182, 34%, 57%);
  --secondary: hsl(196, 29%, 74%);
  --accent: hsl(2, 48%, 74%);
  --bg-dark: #101216;
  --bg-panel: #181b20;
}

body{
  background-color: var(--bg-dark);
  color: #f2f2f2;
  font-family: 'Nunito', sans-serif;
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Poppins', sans-serif;
}
.navbar{
  background-color: var(--bg-panel);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #f2f2f2 !important;
}
.navbar-brand img{
  border-radius: 10px;
}
.navbar .nav-link{
  color: #e5e5e5;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus{
  color: var(--primary);
}
.navbar-toggler{
  border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon{
  filter: invert(1);
}
@media (max-width: 991px){
  .navbar-collapse{
    margin-top: 1rem;
  }
  .navbar .nav-link{
    margin-left: 0;
    padding: 0.5rem 0;
  }
}

footer {
  background: #14171c;
  color: #e8ebee;
  font-family: 'Nunito', sans-serif;
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
footer h5, footer h6 {
  font-family: 'Poppins', sans-serif;
  color: #f5f7f8;
}
footer a {
  color: #c7ced3;
  text-decoration: none;
}
footer a:hover {
  color: hsl(182, 34%, 57%);
}
footer .footer-brand {
  color: hsl(182, 34%, 57%);
  font-weight: 700;
}
footer .footer-desc {
  color: #b7bec4;
  font-size: 0.95rem;
  line-height: 1.6;
}
footer .footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 24px;
}
footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8ebee;
  margin-right: 10px;
  transition: all 0.25s ease;
}
footer .social-icons a:hover {
  background: hsl(182, 34%, 57%);
  border-color: hsl(182, 34%, 57%);
  color: #101216;
}
footer .list-unstyled li {
  margin-bottom: 10px;
}
footer .copyright {
  color: #8b939a;
  font-size: 0.85rem;
}

#consentPanel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #181b21;
  border-top: 2px solid hsl(182, 34%, 57%);
  color: #e8ebee;
  font-family: 'Nunito', sans-serif;
  padding: 20px 0;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
#consentPanel h5 {
  font-family: 'Poppins', sans-serif;
  color: hsl(182, 34%, 57%);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#consentPanel p {
  font-size: 0.85rem;
  color: #c7ced3;
  margin-bottom: 10px;
}
#consentPanel .cookie-cats {
  font-size: 0.8rem;
  color: #b7bec4;
  margin-bottom: 12px;
}
#consentPanel .cookie-cats strong {
  color: #e8ebee;
}
.btn-cookie-accept, .btn-cookie-reject {
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border: none;
  flex: 1;
  transition: all 0.25s ease;
}
.btn-cookie-accept {
  background: hsl(182, 34%, 57%);
  color: #101216;
}
.btn-cookie-accept:hover {
  background: hsl(182, 34%, 47%);
  color: #101216;
}
.btn-cookie-reject {
  background: hsl(196, 29%, 74%);
  color: #101216;
}
.btn-cookie-reject:hover {
  background: hsl(196, 29%, 64%);
  color: #101216;
}
.btn-cookie-manage {
  color: hsl(2, 48%, 74%);
  font-size: 0.8rem;
  text-decoration: underline;
  display: inline-block;
  margin-top: 8px;
}
.btn-cookie-manage:hover {
  color: hsl(2, 48%, 84%);
}

#about-content {
  background-color: #14161b;
  color: #e8e9eb;
  font-family: 'Nunito', sans-serif;
  padding: 96px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Poppins', sans-serif;
  color: #f2f3f4;
}
#about-content .lead-text {
  color: hsl(196, 29%, 74%);
  font-size: 1.15rem;
}
#about-content .about-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-content .panel {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
}
#about-content .value-card {
  background-color: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}
#about-content .value-card h4 {
  color: hsl(182, 34%, 57%);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
#about-content .value-card p {
  color: #cfd2d6;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#about-content .facts-table {
  width: 100%;
  border-collapse: collapse;
}
#about-content .facts-table th,
#about-content .facts-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  color: #e8e9eb;
  font-size: 0.95rem;
}
#about-content .facts-table th {
  color: hsl(2, 48%, 74%);
  font-weight: 600;
  width: 45%;
}
#about-content .cta-box {
  background-color: hsl(182, 34%, 57%);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
#about-content .cta-box h2,
#about-content .cta-box p {
  color: #101216;
}
#about-content .cta-box .btn-cta {
  background-color: #101216;
  color: #f2f3f4;
  border: none;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-content .btn-cta:hover {
  background-color: #1a1d23;
  color: #fff;
}
#about-content .section-gap {
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  #about-content { padding: 64px 0; }
  #about-content .cta-box { padding: 32px 20px; }
}



  

  .thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(196, 29%, 92%) 0%, hsl(182, 34%, 90%) 100%);
    font-family: 'Nunito', sans-serif;
    padding: 3rem 1rem;
  }

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

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

  .success-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(182, 34%, 57%, 0.35);
    animation: pop 0.5s ease-out 0.2s both;
  }

  @keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

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

  .thankyou-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #2c3e40;
    margin-bottom: 1rem;
  }

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

  .info-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
    text-align: left;
    display: inline-block;
  }

  .info-list li {
    font-size: 1rem;
    color: #4a5a5d;
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .info-list li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    margin-top: 2px;
  }

  .btn-home {
    background: var(--primary);
    border: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0.4rem 1rem hsla(182, 34%, 57%, 0.4);
  }

  .btn-home:hover {
    background: hsl(182, 34%, 50%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0.6rem 1.4rem hsla(182, 34%, 57%, 0.5);
  }

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

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

#portfolio-section {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e6e9ec;
}
#portfolio-section .section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f5f7f8;
}
#portfolio-section .section-sub {
  color: hsl(196, 29%, 74%);
  max-width: 680px;
}
#portfolio-section .intro-stats {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 28px;
  background: #1a1d23;
}
#portfolio-section .intro-stats .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: hsl(182, 34%, 57%);
}
#portfolio-section .intro-stats .lbl {
  color: hsl(196, 29%, 74%);
  font-size: 0.9rem;
}
#portfolio-section .case-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.2s ease;
}
#portfolio-section .case-card:hover {
  border-color: hsl(182, 34%, 57%);
}
#portfolio-section .case-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #101216;
}
#portfolio-section .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-section .badge-cat {
  background: hsl(2, 48%, 74%);
  color: #241012;
  font-weight: 600;
  border-radius: 12px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-family: 'Poppins', sans-serif;
}
#portfolio-section .case-body {
  padding: 22px 22px 24px;
}
#portfolio-section .case-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f5f7f8;
  margin: 12px 0 8px;
}
#portfolio-section .case-desc {
  color: #c7ccd1;
  font-size: 0.95rem;
  line-height: 1.5;
}
#portfolio-section .btn-details {
  border: 1px solid hsl(182, 34%, 57%);
  color: hsl(182, 34%, 57%);
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
}
#portfolio-section .btn-details:hover {
  background: hsl(182, 34%, 57%);
  color: #101216;
}
#portfolio-section .modal-content {
  background: #1a1d23;
  color: #e6e9ec;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
#portfolio-section .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
#portfolio-section .modal-title {
  font-family: 'Poppins', sans-serif;
  color: #f5f7f8;
}
#portfolio-section .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
}
#portfolio-section .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-section .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#portfolio-section table {
  color: #e6e9ec;
  border-color: rgba(255,255,255,0.15);
}
#portfolio-section table th {
  color: hsl(196, 29%, 74%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  width: 42%;
}
#portfolio-section .details-table-wrap {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 24px;
  background: #1a1d23;
  margin-top: 40px;
}
#portfolio-section .cta-box {
  background: hsl(182, 34%, 57%);
  border-radius: 22px;
  padding: 48px 32px;
  margin-top: 56px;
  text-align: center;
}
#portfolio-section .cta-box h3 {
  font-family: 'Poppins', sans-serif;
  color: #101216;
  font-weight: 700;
}
#portfolio-section .cta-box p {
  color: #1a1d23;
}
#portfolio-section .cta-box .btn-cta {
  background: #101216;
  color: #f5f7f8;
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 30px;
  font-family: 'Poppins', sans-serif;
  border: none;
  text-decoration: none;
  display: inline-block;
}
#portfolio-section .cta-box .btn-cta:hover {
  background: #24272d;
  color: #fff;
}

.hero-tile-section {
  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/cover.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Nunito', sans-serif;
  color: #f5f6f7;
  overflow: hidden;
}

.hero-tile-section .badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid hsla(182, 34%, 57%, 0.4);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: hsl(196, 29%, 74%);
  margin-bottom: 28px;
}

.hero-tile-section h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-tile-section h1 span {
  color: hsl(182, 34%, 57%);
}

.hero-tile-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: hsl(196, 29%, 74%);
  margin-bottom: 22px;
}

.hero-tile-section p.lead-desc {
  font-size: 1.1rem;
  color: #dfe3e6;
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-tile-section .btn-hero {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 20px;
  background: hsl(182, 34%, 57%);
  color: #101216;
  border: 2px solid hsl(182, 34%, 57%);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-tile-section .btn-hero:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.hero-tile-section .stats-strip {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-tile-section .stat-item {
  border-left: 2px solid hsla(182, 34%, 57%, 0.5);
  padding-left: 16px;
}

.hero-tile-section .stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: hsl(2, 48%, 74%);
  display: block;
}

.hero-tile-section .stat-item .lbl {
  font-size: 0.9rem;
  color: #c7ccd0;
}

.hero-tile-section .scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #dfe3e6;
  font-size: 1.6rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero-tile-section .stats-strip {
    gap: 24px;
    margin-top: 44px;
  }
  .hero-tile-section .stat-item .num {
    font-size: 1.4rem;
  }
}

#works {
  background: linear-gradient(180deg, #14171c 0%, #1a1d23 100%);
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e8e9eb;
}

#works h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #f5f6f7;
}

#works .lead-text {
  color: hsl(196, 29%, 84%);
  max-width: 680px;
}

#works .works-panel {
  background: #1e2229;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

#works .works-panel:hover {
  transform: translateY(-6px);
  border-color: hsl(182, 34%, 57%);
}

#works .works-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #10131700;
}

#works .works-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#works .works-badge {
  display: inline-block;
  background: hsl(182, 34%, 57%, 0.15);
  color: hsl(182, 34%, 70%);
  border: 1px solid hsl(182, 34%, 57%);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

#works .works-body {
  padding: 24px;
}

#works .works-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #f5f6f7;
  margin-bottom: 10px;
}

#works .works-body p {
  color: hsl(196, 29%, 82%);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

#works .works-link-btn {
  border: 1px solid hsl(2, 48%, 74%);
  color: hsl(2, 48%, 80%);
  background: transparent;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease, color 0.25s ease;
}

#works .works-link-btn:hover {
  background: hsl(2, 48%, 74%);
  color: #1a1d23;
}

#works .modal-content.works-modal {
  background: #1e2229;
  color: #e8e9eb;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

#works .modal-content.works-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#works .modal-content.works-modal .modal-title {
  font-family: 'Poppins', sans-serif;
  color: #f5f6f7;
}

#works .modal-content.works-modal .btn-close {
  filter: invert(1);
}

#works .modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
}

#works .modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#works .works-stats-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px;
  padding-top: 40px;
}

#works .works-stats-row .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: hsl(182, 34%, 62%);
}

#works .works-stats-row .stat-label {
  color: hsl(196, 29%, 78%);
  font-size: 0.92rem;
}

#testimonials {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e8eaed;
}
#testimonials h2 {
  font-family: 'Poppins', sans-serif;
  color: #f2f4f5;
  font-weight: 600;
}
#testimonials .lead-sub {
  color: hsl(196, 29%, 74%);
  max-width: 640px;
}
#testimonials .review-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
#testimonials .review-card:hover {
  border-color: hsl(182, 34%, 57%);
  transform: translateY(-3px);
}
#testimonials .review-card .stars {
  color: hsl(2, 48%, 74%);
  letter-spacing: 2px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
#testimonials .review-card .review-text {
  color: #d7dadd;
  font-size: 0.98rem;
  line-height: 1.55;
  flex-grow: 1;
}
#testimonials .review-card .review-text.short {
  font-size: 1.05rem;
}
#testimonials .reviewer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
#testimonials .reviewer .name {
  font-family: 'Poppins', sans-serif;
  color: #f2f4f5;
  font-weight: 600;
  font-size: 0.95rem;
}
#testimonials .reviewer .location {
  color: hsl(182, 34%, 57%);
  font-size: 0.85rem;
}
#testimonials .stat-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 64px;
}
#testimonials .stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: hsl(182, 34%, 57%);
}
#testimonials .stat-label {
  color: #b7bcc2;
  font-size: 0.9rem;
}
#testimonials .badge-quiet {
  background: rgba(255,255,255,0.06);
  color: hsl(196, 29%, 74%);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 18px;
}

#enquiry {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e8e9eb;
}
#enquiry h2, #enquiry h3 {
  font-family: 'Poppins', sans-serif;
}
#enquiry .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#enquiry .lead-text {
  color: hsl(196, 29%, 84%);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
#enquiry .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
#enquiry .contact-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: hsl(182, 34%, 57%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #101216;
  font-size: 1.1rem;
}
#enquiry .contact-item a {
  color: hsl(182, 34%, 70%);
  text-decoration: none;
}
#enquiry .contact-item a:hover {
  color: hsl(182, 34%, 80%);
  text-decoration: underline;
}
#enquiry .contact-item p {
  margin-bottom: 2px;
  color: #d8dadd;
}
#enquiry .contact-item span.label {
  color: #9aa0a6;
  font-size: 0.85rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
#enquiry .find-us-line {
  font-size: 0.92rem;
  color: #9aa0a6;
  margin-top: 6px;
}
#enquiry .find-us-line a {
  color: hsl(2, 48%, 74%);
  text-decoration: none;
  font-weight: 600;
}
#enquiry .find-us-line a:hover {
  text-decoration: underline;
}
#enquiry .form-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
#enquiry .form-label {
  color: #d8dadd;
  font-weight: 600;
  margin-bottom: 6px;
}
#enquiry .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.12);
  color: #e8e9eb;
  border-radius: 12px;
  padding: 12px 16px;
}
#enquiry .form-control:focus {
  background: #101216;
  border-color: hsl(182, 34%, 57%);
  box-shadow: 0 0 0 0.2rem hsla(182, 34%, 57%, 0.25);
  color: #e8e9eb;
}
#enquiry .form-control::placeholder {
  color: #6c7278;
}
#enquiry .btn-submit {
  background: hsl(182, 34%, 57%);
  color: #101216;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: background 0.2s ease;
}
#enquiry .btn-submit:hover {
  background: hsl(182, 34%, 47%);
  color: #101216;
}
#enquiry .hours-table {
  color: #d8dadd;
  font-size: 0.92rem;
  margin-top: 4px;
}
#enquiry .hours-table div {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
#enquiry .section-eyebrow {
  color: hsl(2, 48%, 74%);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  #enquiry .contact-panel, #enquiry .form-panel {
    padding: 28px 22px;
  }
}

#legal-notice{
  background:#14171c;
  padding:96px 0;
  font-family:'Nunito',sans-serif;
  color:#e8eaed;
}
#legal-notice h2{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  color:#e8eaed;
}
#legal-notice .notice-panel{
  background:#1a1d23;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;
  padding:40px;
}
#legal-notice .icon-wrap{
  width:56px;
  height:56px;
  border-radius:16px;
  background:hsl(182,34%,57%,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
#legal-notice .icon-wrap i{
  font-size:1.6rem;
  color:hsl(182,34%,57%);
}
#legal-notice p{
  color:#c7cbd1;
  line-height:1.8;
  margin:0;
}
@media (max-width:576px){
  #legal-notice .notice-panel{padding:28px;}
}

#contact-section {
  background: #14171c;
  color: #e8eaed;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
}
#contact-section h1, #contact-section h2, #contact-section h3 {
  font-family: 'Poppins', sans-serif;
}
#contact-section .lead-text {
  color: hsl(196, 29%, 84%);
  font-size: 1.1rem;
  max-width: 640px;
}
#contact-section .panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contact-section .form-label {
  color: #e8eaed;
  font-weight: 600;
  margin-bottom: 6px;
}
#contact-section .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #e8eaed;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact-section .form-control:focus {
  background: #101216;
  color: #e8eaed;
  border-color: hsl(182, 34%, 57%);
  box-shadow: 0 0 0 0.2rem hsla(182, 34%, 57%, 0.25);
}
#contact-section .form-control::placeholder {
  color: rgba(232,234,237,0.4);
}
#contact-section .btn-primary-custom {
  background: hsl(182, 34%, 57%);
  color: #101216;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease;
}
#contact-section .btn-primary-custom:hover {
  background: hsl(182, 34%, 47%);
  color: #101216;
  transform: translateY(-2px);
}
#contact-section .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#contact-section .info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
#contact-section .info-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#contact-section .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: hsla(182, 34%, 57%, 0.15);
  color: hsl(182, 34%, 67%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
#contact-section .info-list a {
  color: hsl(196, 29%, 84%);
  text-decoration: none;
}
#contact-section .info-list a:hover {
  color: hsl(182, 34%, 67%);
  text-decoration: underline;
}
#contact-section .info-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
#contact-section .hours-table {
  width: 100%;
  font-size: 0.95rem;
  color: hsl(196, 29%, 84%);
}
#contact-section .hours-table td {
  padding: 4px 0;
}
#contact-section .hours-table td:last-child {
  text-align: right;
  color: #e8eaed;
}
#contact-section .map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(2, 48%, 74%);
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
}
#contact-section .map-link:hover {
  color: hsl(2, 48%, 84%);
  text-decoration: underline;
}
#contact-section .badge-accent {
  display: inline-block;
  background: hsla(2, 48%, 74%, 0.15);
  color: hsl(2, 48%, 84%);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
#contact-section .cta-strip {
  margin-top: 56px;
  background: hsla(182, 34%, 57%, 0.1);
  border: 1px solid hsla(182, 34%, 57%, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
#contact-section .cta-strip h3 {
  color: #ffffff;
}
#contact-section .cta-strip p {
  color: hsl(196, 29%, 84%);
}
@media (max-width: 767px) {
  #contact-section { padding: 56px 0; }
  #contact-section .panel { padding: 24px; }
}
