/* COLOURS */
:root {
  --navy: #0b1c2d;
  --gold: #c9a24d;
  --light: #f7f7f7;
  --dark: #222;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(11,28,45,0.9), rgba(11,28,45,0.9));
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.subheading {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 25px;
  margin: 10px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section.alt {
  background: var(--light);
}

.section h2 {
  color: var(--navy);
  margin-bottom: 40px;
}

/* FEATURES */
.features {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.feature h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

/* BEFORE & AFTER */
.before-after {
  display: grid;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.ba-item {
  position: relative;
}

.ba-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 4px;
  font-weight: bold;
}

/* STEPS */
.steps {
  display: grid;
  gap: 30px;
  max-width: 800px;
  margin: auto;
}

.step span {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.faq-item h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq-item p {
  color: #444;
}

/* FINAL CTA */
.cta-final {
  background: var(--navy);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-final h2 {
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #081421;
  color: #ccc;
  text-align: center;
  padding: 15px;
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .features,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .before-after {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.gallery-item {
  max-width: 900px;
  margin: 0 auto;
}

.before-after {
  display: flex;
  gap: 20px;
}

.ba-item {
  position: relative;
  flex: 1;
}

.ba-item img {
  width: 100%;
  border-radius: 10px;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0d1b2a;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 5px;
}

.project-desc {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .before-after {
    flex-direction: column;
  }
}
/* SLIDER */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.ba-slider img {
  width: 100%;
  display: block;
}

/* BEFORE IMAGE OVERLAY */
.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HANDLE */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
}

.ba-handle::after {
  content: "⇆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0d1b2a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}
