:root {
  --bg: #0c0c0c;
  --panel: #262626;
  --panel2: #2d2d2d;
  --text: #e9e9e9;
  --muted: #b8b8b8;
  --border: #3a3a3a;
  --white: #ffffff;
  --accent: #fed519;
  --accent2: #e6c10f;
  --shadow: 0 12px 34px rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
}
html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.app {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  border-right: 1px solid var(--border);
  background: var(--bg);
  padding: 18px 16px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.main {
  flex: 1;
  padding: 34px 22px;
}

.content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .main {
    padding: 88px 16px 24px;
  }
}

@media (max-width: 992px) {
  .main {
    padding: 88px 16px 24px;
  }
}

.sidebar-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 50;
  background: rgba(22, 26, 34, .9);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.sidebar-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 40;
}

.sidebar.mobile {
  position: fixed;
  z-index: 45;
  left: -320px;
  top: 0;
  height: 100vh;
  transition: left .25s ease;
}

.sidebar.mobile.open {
  left: 0;
}

.mt-0{
    margin-top: 0;
}

.mt-10{
    margin-top: 10px;
}

.mt-14{
    margin-top: 14px;
}

.mt-16{
    margin-top: 16px;
}

.mb-0{
    margin-top: 0;
}

@media (max-width: 992px) {
  .sidebar:not(.mobile) {
    display: none;
  }

  .sidebar-toggle {
    display: block;
  }

  .sidebar-toggle {
    display: block;
  }

  .main {
    padding: 76px 18px 22px;
  }

  .sidebar-mobile-backdrop.show {
    display: block;
  }

  header {
    display: none;
  }

  .section.hero {
    padding: 34px 22px;
  }

  .sidebar.mobile {
    display: block;
    width: 270px;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: 34px 120px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .15), transparent 45%),
    linear-gradient(145deg, rgba(246, 162, 26, .95), rgba(224, 137, 30, .85));
  box-shadow: 0 10px 24px rgba(246, 162, 26, .18);
}
.sidebar-cta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.h-10{
    height: 10px;
}

.h-12{
    height: 12px;
}

.brand h1 {
  font-size: 15px;
  margin: 0;
  letter-spacing: .4px;
}

.brand small {
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}


.nav .pill {
  font-size: 12px;
  color: #141414;
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.cardx {
  background: #121314;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.cardx.flex-between {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cardx a {
    text-decoration: none;
    color: inherit;
}

.section {
  margin: 18px 0 26px;
}
.section {
  scroll-margin-top: 80px;
}
.section.hero {
  background-image: url(../Images/banner-bg.jpeg);
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content .sub {
  color: var(--white);
}

.hero-content .hero-btn-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.h1 {
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -.6px;
  margin: 0 0 10px;
}

.sub {
  color: var(--muted);
  max-width: 72ch;
  font-size: 16px;
  line-height: 1.6;
}

.sub a {
    color: aliceblue;
}

@media (max-width: 992px) {
  .h1 {
    font-size: 34px;
  }
}

.btnx {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: none;
  background: var(--white);
  color: #141414 !important;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btnx:hover {
  transform: translateY(-1px);
  background: var(--panel2);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}

.btnx.primary {
  background: linear-gradient(145deg, var(--accent), var(--accent2));
  color: #141414;
  border-color: transparent;
  font-weight: 700;
}

.btnx.primary:hover {
  box-shadow: 0 16px 36px rgba(254, 213, 25, .18);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.col-6 {
  grid-column: span 6;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-12 {
  grid-column: span 12;
}

@media (max-width: 992px) {

  .col-5,
  .col-6,
  .col-4,
  .col-7,
  .col-8 {
    grid-column: span 12;
  }

  .col-3 {
    grid-column: span 6;
  }
}

.tile {
  position: relative;
  overflow: hidden;
  height: 100%;
}


.tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--accent);
}

.tile p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sidebar.mobile {
    transition: none;
  }
}

.footer {
  margin-top: 28px;
  padding: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  background: var(--white);
  color: #141414;
}

.footer .logo {
  width: 100%;
  max-width: 200px;
}

.footer h5 {
  font-size: 18px;
  color: #141414;
  margin-bottom: 10px;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #141414;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--accent);
}
.footer .map {
  width: 100%;
  /*max-width: 200px;*/
}
.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  background: rgba(0, 0, 0, .15) !important;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px !important;
  box-shadow: none !important;
}

.form-control:focus {
  border-color: rgba(254, 213, 25, .55) !important;
  box-shadow: 0 0 0 4px rgba(254, 213, 25, .10) !important;
}

label.sub {
  margin-bottom: 6px;
  display: block;
}

.sidebar {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

.sidebar.mobile {
  overflow-y: auto;
}

.navbar {
  background-color: #0c0c0c;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.navbar-brand {
  margin-left: 10px;
}

.navbar-brand a {
  color: var(--accent);
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.navbar-brand a span {
  color: var(--white);
}

.navbar-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style-type: none;
  margin-right: 10px;
}

.navbar-links li {
  display: inline;
}

.navbar-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  position: relative;
}

.navbar-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.navbar-links a.active:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.quote-btn {
  background-color: #fed519;
  color: #141414;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.quote-btn:hover {
  background-color: #e6c10f;
}

header {
  border-bottom: 2px solid var(--accent);
}

.project-showcase {
  position: relative;
  background: #121314;
  border-radius: 32px;
  padding: 32px 40px 40px;
  overflow: hidden;
}

.project-showcase-header {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.project-showcase-header .project-counter-current,
.project-showcase-header .project-counter-total {
  font-weight: 600;
}


.project-showcase-scroll-indicator {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px 0;
  opacity: .7;
}

.project-showcase-scroll-indicator span {
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  transition: transform .4s ease;
}

.project-slide {
  display: none;
  animation: projectFade .6s ease-out;
}

.project-slide.is-active {
  display: block;
}

.project-slide .grid {
  align-items: center;
}

@keyframes projectFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-mockup {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.mockup-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020b16;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .4);
}

.mockup-desktop-frame {
  padding: 10px 10px 14px;
  border-radius: 30px;
  background: #020b16;
  margin-bottom: 0;
}

.mockup-desktop-frame .mockup-scroll {
  height: 320px;
}

.mockup-mobile-frame {
  position: absolute;
  left: -32px;
  bottom: 24px;
  width: 32%;
  max-width: 150px;
  border-radius: 32px;
  padding: 6px;
}

.mockup-mobile-frame .mockup-scroll {
  height: 230px;
}

.mockup-scroll {
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.mockup-scroll-slow {
  animation-duration: 22s;
}

.mockup-scroll img {
  width: 100%;
  height: auto;
  display: block;
  animation: mockupScroll 18s linear infinite;
}

.mockup-scroll-slow img {
  animation-duration: 22s;
}

@keyframes mockupScroll {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-70%);
  }

  100% {
    transform: translateY(0);
  }
}

.project-title {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 10px;
}

.project-meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.project-showcase-nav {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
}

.project-showcase-nav button {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
}

.project-showcase-nav button:hover {
  border-color: var(--accent);
}


@media (max-width: 992px) {
  .project-showcase {
    padding: 24px 18px 32px;
  }

  .project-mockup {
    margin-bottom: 20px;
  }

  .mockup-mobile-frame {
    display: none;
  }

  .project-showcase-nav {
    position: static;
    margin-top: 16px;
    justify-content: flex-end;
  }
}

.field-error {
  margin-top: 4px;
  font-size: 0.85rem;
  color: #e74c3c;
  min-height: 1em;
}

.is-invalid {
  border-color: #e74c3c;
}

.honeypot-wrap {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.submit-wrap{
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gmaps-privacy-box {
  background: #f3f3f3;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}
.gmaps-privacy-box button {
  margin-top: 8px;
  padding: 6px 12px;
  cursor: pointer;
}
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #121314;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  z-index: 9999;
}
#cookie-banner p {
  margin: 0 0 8px;
}
#cookie-banner a {
    color: inherit;
}
