/* ═══════════════════════════════════════════════════════════════
   inner.css — Service Inner Page & General Inner Page Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── INNER PAGE HERO ──────────────────────────────────────────── */
.inner-hero {
  background: var(--grad-hero);
  padding: 120px 5% 72px;
  position: relative; overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(201,150,43,.06) 0, rgba(201,150,43,.06) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg,  rgba(201,150,43,.04) 0, rgba(201,150,43,.04) 1px, transparent 1px, transparent 80px);
}
.inner-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.inner-hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.inner-hero-label::before { content: ''; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.inner-hero h1 { font-size: clamp(30px, 4.5vw, 56px); color: var(--white); margin-bottom: 18px; line-height: 1.15; }
.inner-hero h1 span { color: var(--gold); }
.inner-hero-desc { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 28px; max-width: 480px; }
.inner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.inner-hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 28px 72px rgba(0,0,0,.45); border: 3px solid rgba(201,150,43,.3); }
.inner-hero-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

/* quick stats inside hero */
.inner-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.istat { background: rgba(255,255,255,.08); border: 1px solid rgba(201,150,43,.25); border-radius: 12px; padding: 14px 20px; text-align: center; backdrop-filter: blur(6px); }
.istat-val { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.istat-lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ── SERVICE OVERVIEW SECTION ─────────────────────────────────── */
.svc-overview { padding: 80px 5%; }
.svc-overview-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.svc-overview-content .section-desc { margin-bottom: 20px; }

/* ── BENEFIT CARDS ────────────────────────────────────────────── */
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.benefit-card {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 20px; border-left: 3px solid var(--gold); transition: all .25s;
}
.benefit-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.bc-icon { font-size: 28px; margin-bottom: 10px; }
.benefit-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.benefit-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* large image with floating badge */
.svc-img-wrap { position: relative; }
.svc-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.svc-img-main img { width: 100%; height: 420px; object-fit: cover; display: block; }
.svc-badge-float {
  position: absolute; bottom: -20px; left: 24px;
  background: var(--grad-gold); color: var(--navy); border-radius: 12px;
  padding: 14px 22px; box-shadow: 0 8px 28px rgba(201,150,43,.4);
  font-weight: 700;
}
.svc-badge-float .bf-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); line-height: 1; }
.svc-badge-float .bf-lbl { font-size: 12px; font-weight: 700; margin-top: 2px; }

/* ── FEATURES STRIP ───────────────────────────────────────────── */
.features-strip { background: var(--off-white); padding: 72px 5%; }
.features-strip-inner { max-width: 1200px; margin: 0 auto; }
.fs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 48px; }
.fs-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm); text-align: center; transition: all .3s;
}
.fs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.fs-icon { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.fs-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.fs-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── PROCESS STEPS ────────────────────────────────────────────── */
.process-section { padding: 80px 5%; background: var(--white); }
.process-inner   { max-width: 1100px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
  z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,150,43,.35);
}
.step-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { padding: 80px 5%; background: var(--off-white); }
.faq-inner   { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden; border: 1px solid var(--light-gray);
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 16px; color: var(--navy);
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-q-arrow { font-size: 20px; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px; font-size: 15px; color: var(--text-mid); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ── RELATED SERVICES ─────────────────────────────────────────── */
.related-section { padding: 80px 5%; }
.related-inner   { max-width: 1200px; margin: 0 auto; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.related-card {
  background: var(--white); border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm); transition: all .3s;
  text-decoration: none; display: block;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.related-card img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .4s; }
.related-card:hover img { transform: scale(1.06); }
.related-card-body { padding: 16px; }
.related-card-body h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.related-card-body p  { font-size: 13px; color: var(--text-mid); }
.related-card-body .arrow { color: var(--gold); font-weight: 700; font-size: 13px; margin-top: 10px; display: inline-block; }

/* ── INNER CTA ────────────────────────────────────────────────── */
.inner-cta { background: var(--grad-hero); padding: 72px 5%; text-align: center; position: relative; overflow: hidden; }
.inner-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,150,43,.05) 0, rgba(201,150,43,.05) 1px, transparent 1px, transparent 60px); }
.inner-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.inner-cta h2 { font-size: clamp(26px,4vw,44px); color: var(--white); margin-bottom: 12px; }
.inner-cta h2 span { color: var(--gold); }
.inner-cta p  { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 32px; line-height: 1.7; }
.inner-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── GALLERY MINI (inside inner page) ────────────────────────── */
.inner-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.inner-gal-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: transform .3s; }
.inner-gal-item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.inner-gal-item img { width: 100%; height: 180px; object-fit: cover; display: block; }

/* ── SERVICES OVERVIEW PAGE ───────────────────────────────────── */
.svc-page-hero { background: var(--grad-hero); padding: 130px 5% 72px; text-align: center; position: relative; overflow: hidden; }
.svc-page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,150,43,.05) 0, rgba(201,150,43,.05) 1px, transparent 1px, transparent 60px); }
.svc-page-hero-inner { position: relative; z-index: 2; }

/* tabs */
.svc-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.tab-btn {
  padding: 11px 26px; border-radius: 50px; font-size: 14px; font-weight: 600;
  border: 2px solid var(--light-gray); background: var(--white); color: var(--text-mid);
  cursor: pointer; transition: all .25s;
}
.tab-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.svc-panel { display: none; }
.svc-panel.active { display: block; }

/* service cards */
.svc-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.svc-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); transition: all .3s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-img { height: 210px; overflow: hidden; position: relative; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-card-img img { transform: scale(1.07); }
.svc-card-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; }
.svc-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.svc-card-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.svc-card-body p  { font-size: 13px; color: var(--text-mid); line-height: 1.65; flex: 1; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 14px; font-weight: 700; margin-top: 16px;
  transition: gap .2s;
}
.svc-card:hover .svc-card-link { gap: 10px; }

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-hero { background: var(--grad-hero); padding: 130px 5% 80px; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,150,43,.05) 0, rgba(201,150,43,.05) 1px, transparent 1px, transparent 60px); }
.about-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.about-hero h1 { font-size: clamp(32px, 5vw, 60px); color: var(--white); margin-bottom: 18px; }
.about-hero h1 span { color: var(--gold); }
.about-hero p { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.8; }

.value-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.val-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray);
  max-width: 280px; flex: 1; min-width: 220px; text-align: center; transition: all .3s;
}
.val-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.val-icon { font-size: 42px; margin-bottom: 16px; }
.val-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.val-card p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gallery-hero { background: var(--grad-hero); padding: 130px 5% 72px; text-align: center; position: relative; overflow: hidden; }
.gallery-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,150,43,.05) 0, rgba(201,150,43,.05) 1px, transparent 1px, transparent 60px); }
.gallery-hero-inner { position: relative; z-index: 2; }

/* filter buttons */
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn { padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 2px solid var(--light-gray); background: var(--white); color: var(--text-mid); cursor: pointer; transition: all .25s; }
.filter-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.filter-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* masonry gallery */
.masonry-grid { columns: 3; column-gap: 16px; max-width: 1200px; margin: 0 auto; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; box-shadow: var(--shadow-sm); transition: all .3s; }
.masonry-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.masonry-item img { width: 100%; display: block; transition: transform .4s; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,62,.75) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay-txt { color: var(--white); font-size: 14px; font-weight: 600; }

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-hero { background: var(--grad-hero); padding: 130px 5% 72px; text-align: center; position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(201,150,43,.05) 0, rgba(201,150,43,.05) 1px, transparent 1px, transparent 60px); }
.contact-hero-inner { position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; max-width: 1100px; margin: 0 auto; padding: 80px 5%; align-items: start; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); border: 1px solid var(--light-gray); }
.contact-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--light-gray); }
.ci-item:last-child { border-bottom: none; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ci-text strong { display: block; font-size: 12px; color: var(--text-light); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; margin-bottom: 4px; }
.ci-text a, .ci-text span { font-size: 15px; color: var(--navy); font-weight: 500; }
.ci-text a:hover { color: var(--teal); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; letter-spacing: .8px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); border: 2px solid var(--light-gray); font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--navy); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.submit-btn { background: var(--grad-gold); color: var(--navy); font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: all .3s; box-shadow: 0 4px 16px rgba(201,150,43,.3); display: flex; align-items: center; gap: 8px; justify-content: center; width: 100%; margin-top: 8px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,43,.4); }
.map-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 28px; }
.map-box iframe { width: 100%; height: 280px; border: none; display: block; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .inner-hero-grid, .svc-overview-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .benefit-cards { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .inner-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .inner-hero { padding: 100px 5% 56px; }
  .svc-overview { padding: 56px 5%; }
  .steps-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .inner-gallery { grid-template-columns: 1fr; }
}
