* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
}

/* HERO */
.setups-hero {
  height: 80vh;
  background: url('../images/CB\ 1.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0,0,0,0.45);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-overlay p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* HERO CTA BUTTON */
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 42px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 40px;
  background: transparent;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: #fff;
  color: #0A6F63;
  transform: translateY(-3px);
}


/* SERVICE OVERVIEW */
.service-overview {
  padding: 100px 6vw;
}

.service-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.service-text h2 {
  font-size: 2.5rem;
  color: #0A6F63;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.service-list ul {
  list-style: none;
}

.service-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-title {
  display: block;
  font-weight: 600;
  font-size: 1.15rem;
}

.service-desc {
  font-size: 0.95rem;
  color: #777;
  margin-top: 6px;
}

/* GALLERY */
.setups-gallery {
  padding: 80px 6vw 120px;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.setup-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  grid-column: span 4;
  height: 320px;
}

.setup-item.featured {
  grid-column: span 8;
  height: 420px;
}

.setup-item.wide {
  grid-column: span 12;
  height: 380px;
}

.setup-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.setup-item:hover img {
  transform: scale(1.06);
}

.setup-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
}

.setup-caption h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

.setup-caption span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .setups-gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .setup-item,
  .setup-item.featured,
  .setup-item.wide {
    grid-column: span 6;
    height: 280px;
  }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  width: 100%;
  min-height: 100vh; /* fills full screen */
  background-image: url('../images/Lets Talk Bg 2.jpeg');
  background-position: center;
  background-size: cover; /* ensures the bg fully covers */
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: parallax effect */
  
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* CONTACT CARD */
.contact-wrap {
  display: flex;
  flex-direction: row;
  max-width: 1100px;
  width: 95%;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: #0A6F63;
  margin-bottom: 18px;
  font-weight: 700;
  font-family: 'Le Jour Serif', serif;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-item i {
  margin-right: 12px;
  font-size: 20px;
  color: #0A6F63;
  flex-shrink: 0;
}

/* SOCIAL ICONS IN LEFT PANEL */
.contact-socials {
  margin-top: 30px;
  display: flex;
  flex-direction: column; /* stacked vertically */
  gap: 12px;
}

.contact-socials .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0A6F63;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}

.contact-socials .social-icon i {
  font-size: 20px;
}

.contact-socials .social-icon:hover {
  color: #08806d;
  transform: translateX(4px);
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.email-instructions {
  max-width: 600px;
  text-align: left;
  color: #444;
  margin-bottom: 28px;
}

.email-instructions p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.email-instructions ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.email-instructions li {
  font-size: 0.95rem;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.email-instructions li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0A6F63;
  font-weight: bold;
}

/* BUTTON */
.email-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background-color: #0A6F63;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.email-btn:hover {
  background-color: #0e8b7c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .contact-wrap {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 40px 30px;
  }

  .email-instructions {
    text-align: center;
  }

  .email-btn {
    margin-top: 25px;
  }
}

@media (max-width: 600px) {
  .contact-left h2 {
    font-size: 1.8rem;
  }

  .contact-left p,
  .email-instructions p {
    font-size: 0.95rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .email-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}


/* =========================================================
   FOOTER
========================================================= */
footer {
    background: #0A6F63;
    color: #fff;
    text-align: center;
    padding: 40px 10%;
    margin-top: -1px;
}

footer .socials a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.4rem;
    transition: 0.3s;
}

footer .socials a:hover {
    color: #3BAA9A;
}