/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

/* =========================
   HERO
========================= */
.setups-hero.production-hero {
  height: 80vh;
  background: url('../images/O\ 2.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setups-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-overlay {
  position: relative;
  padding: 90px 45px;
  text-align: center;
  color: #fff;
}

.hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-overlay p {
  font-size: 1.1rem;
  opacity: 0.92;
}

/* =========================
   HERO BUTTON
========================= */
.hero-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 42px;

  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 50px;

  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle fill animation */
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0A6F63;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.hero-btn:hover::before {
  transform: scaleX(1);
}

.hero-btn:hover {
  border-color: #0A6F63;
  color: #fff;
  transform: translateY(-2px);
}

/* 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: 120px 6vw;
}

.service-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.service-text h2 {
  font-size: 2.5rem;
  color: #0A6F63;
  margin-bottom: 22px;
}

.service-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}

/* SERVICE LIST */
.service-list ul {
  list-style: none;
}

.service-list li {
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  margin-top: 6px;
  color: #777;
}

/* =========================
   PRODUCTION GALLERY
========================= */
.setups-gallery {
  padding: 110px 6vw 160px;
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 48px; /* MORE SPACE = NO CROWDING */
}

/* =========================
   CARD BASE
========================= */
.setup-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  background: #000;
}

.setup-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 120px rgba(0,0,0,0.22);
}

/* =========================
   IMAGE CONTAINER
========================= */
.setup-image {
  width: 100%;
  height: 100%;
}

.setup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* FILLS CARD */
  display: block;
  transition: transform 0.7s ease;
}

.setup-item:hover img {
  transform: scale(1.05);
}

/* =========================
   CAPTION
========================= */
.setup-caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px 26px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25)
  );

  backdrop-filter: blur(6px);
  border-radius: 18px;
  color: #fff;
}

.setup-caption h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.setup-caption span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* =========================
   GRID LAYOUT (NO OVERLAP)
========================= */
.setup-item.featured {
  grid-column: 1 / span 7;
  aspect-ratio: 16 / 10;
}

.setup-item.tall {
  grid-column: 8 / span 5;
  grid-row: span 2;
}

.setup-item:nth-child(3) {
  grid-column: 3 / span 4;
}

.setup-item.wide {
  grid-column: 1 / span 12;
  aspect-ratio: 21 / 9;
}

.setup-item:nth-child(5) {
  grid-column: 1 / span 6;
}

.setup-item:nth-child(6) {
  grid-column: 7 / span 6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .setups-gallery {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .setup-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 992px) {
  .setups-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: 80px 6vw 120px;
  }

  .setup-item,
  .setup-item.featured,
  .setup-item.tall,
  .setup-item.wide {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3;
  }
}


/* =========================
   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;
}