
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    :root {
      --deep-blue: #0a2540;
      --brand-blue: #0057ff;
      --brand-light: #e6f0ff;
      --text-dark: #1a2e3f;
      --text-muted: #4f5e71;
      --bg-soft: #f9fcff;
      --border-light: #dde7f0;
      --shadow: 0 20px 35px -8px rgba(0,87,255,0.08), 0 8px 16px -6px rgba(0,0,0,0.02);
      --font: 'Inter', system-ui, -apple-system, sans-serif;
    }
    body {
      font-family: var(--font);
      color: var(--text-dark);
      background: white;
      line-height: 1.5;
      overflow-x: hidden;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }
    h1, h2, h3 {
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }
    h1 { font-size: clamp(2.5rem, 9vw, 4.5rem); font-weight: 800; }
    h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 0.75rem; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    section { padding: 5rem 0; }
    @media (max-width: 768px) { section { padding: 3rem 0; } }

    /* ----- HERO SECTION (full cover, centered) ----- */
    .hero {
      background: linear-gradient(135deg, #001a4d, #1e3a8a);
      min-height: 90vh;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      isolation: isolate;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 30%, rgba(0,110,255,0.2) 0%, transparent 60%);
      z-index: -1;
    }
    .hero .container {
      text-align: center;
      padding: 4rem 20px;
    }
    .hero h1 {
      color: white;
      margin-bottom: 2rem;
      text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .hero p {
      font-size: clamp(1.2rem, 4vw, 1.5rem);
      color: rgba(255,255,255,0.95);
      max-width: 1000px;
      margin: 0 auto 2.5rem;
      font-weight: 500;
    }
    .hero-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem 2rem;
      list-style: none;
      max-width: 1000px;
      margin: 0 auto;
    }
    .hero-list li {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(4px);
      padding: 0.9rem 2.5rem;
      border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.25);
      font-weight: 600;
      font-size: 1.2rem;
      white-space: nowrap;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    @media (max-width: 700px) {
      .hero-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
      }
      .hero-list li {
        white-space: normal;
        text-align: center;
        padding: 0.7rem 1rem;
        font-size: 1rem;
      }
    }
    @media (max-width: 450px) {
      .hero-list { grid-template-columns: 1fr; }
    }

    /* ----- BREADCRUMB (single row mobile) ----- */
    .breadcrumb-wrapper {
      background: var(--bg-soft);
      padding: 14px 0;
      border-bottom: 1px solid var(--border-light);
    }
    .breadcrumb {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 8px;
      list-style: none;
      font-size: 0.95rem;
      overflow-x: auto;
      white-space: nowrap;
      padding: 4px 0 6px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .breadcrumb::-webkit-scrollbar { display: none; }
    .breadcrumb-item a { color: var(--brand-blue); font-weight: 500; }
    .breadcrumb-item.active { color: var(--text-muted); }
    .breadcrumb-item + .breadcrumb-item::before {
      content: "/";
      padding-right: 8px;
      color: var(--text-muted);
    }

    /* ----- SECTION 2: ON‑SITE SHOOTS (bullet grid) ----- */
    .shoots-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin: 2.5rem 0;
    }
    .shoot-card {
      background: white;
      border-radius: 28px;
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border-light);
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .shoot-icon {
      background: var(--brand-light);
      width: 56px; height: 56px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .shoot-icon i { font-size: 2rem; color: var(--brand-blue); }
    .shoot-text b { display: block; font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--deep-blue); }
    .shoot-text { color: var(--text-muted); }
    .industry-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.2rem;
      margin: 2rem 0 1.5rem;
    }
    .industry-tags span {
      background: var(--brand-light);
      padding: 0.5rem 1.5rem;
      border-radius: 40px;
      font-weight: 500;
      color: var(--deep-blue);
      border: 1px solid var(--border-light);
    }
    @media (max-width: 768px) {
      .shoots-grid { grid-template-columns: 1fr; }
      .shoot-card { padding: 1.5rem; }
    }

    /* ----- SECTION 3: EDITING SERVICES (icon grid) ----- */
    .editing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin: 3rem 0;
    }
    .edit-item {
      background: white;
      border-radius: 28px;
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: var(--shadow);
      border: 1px solid var(--border-light);
    }
    .edit-icon {
      background: var(--brand-light);
      width: 64px; height: 64px;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
    }
    .edit-icon i { font-size: 2.2rem; color: var(--brand-blue); }
    .edit-item h3 { font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--deep-blue); }
    .edit-item p { color: var(--text-muted); }
    @media (max-width: 992px) { .editing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .editing-grid { grid-template-columns: 1fr; } }

   /* ===== CTA GRADIENT ===== */
.cta-gradient-box {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  border-radius: 32px;
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  color: white;
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
  margin: 40px 0;
}

.cta-gradient-box h2 {
  font-size: 2.2rem;
  color: white !important;
}

.cta-gradient-box p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}

.cta-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: #000;
  padding: 18px 44px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  border: none;
  transition: 0.2s;
}

.cta-btn i {
  font-size: 1.4rem;
}

.cta-btn.wa {
  background: #25D366;
  color: white;
}

@media (max-width: 768px) {
  .cta-gradient-box {
    padding: 40px 25px;
    gap: 25px;
  }
  
  .cta-buttons-row {
    flex-direction: column;
  }
  
  .cta-btn {
    justify-content: center;
    padding: 16px 30px;
  }
}

   
/* ===== CONTACT FORM ===== */
.contact-merged-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.contact-image-side {
  min-height: 600px;
}

.contact-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-side {
  display: flex;
  align-items: center;
  padding: 60px 50px;
  background: white;
}

.contact-form-card {
  width: 100%;
}

.contact-form-card h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-form-card .sub {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  font-size: 1.1rem;
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 18px 20px;
  border: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30,64,175,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.privacy-note {
  margin-top: 25px;
  font-size: 1rem;
  color: var(--text-muted);
}

.privacy-note i {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .contact-merged-box {
    grid-template-columns: 1fr;
  }
  
  .contact-image-side {
    min-height: 300px;
  }
  
  .contact-form-side {
    padding: 40px 25px;
  }
  
  .contact-form-card h2 {
    font-size: 1.8rem;
  }
}

    /* footer credit */
    .footer-credit {
      padding: 2rem 0 2.5rem;
      text-align: center;
      color: #aaa;
      font-size: 0.95rem;
      border-top: 1px solid var(--border-light);
    }

    /* helper */
    .text-center { text-align: center; }
    .mt-2 { margin-top: 2rem; }
    .mb-2 { margin-bottom: 2rem; }
