/* ══════════════════════════════════════════════════════
   VISUALAURA — Creative Add-On Services + slide-over inquiry
   Premium homepage section. Ivory bg, burgundy accents, gold details.
   ══════════════════════════════════════════════════════ */

.addons { background: var(--beige); }
.addons .section-badge { color: #6E1423; background: rgba(110,20,35,.07); border-color: rgba(110,20,35,.18); }
.addons .section-title em { color: #6E1423; }

.aos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aos-card {
  position: relative; overflow: hidden; text-align: left; cursor: pointer;
  background: var(--white); border: 1.5px solid rgba(110,20,35,.12); border-radius: 20px;
  padding: 34px 30px 28px; box-shadow: 0 8px 26px rgba(110,20,35,.05);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  opacity: 0; transform: translateY(24px);
}
.aos-card.visible { opacity: 1; transform: translateY(0); transition-delay: var(--delay, 0s); }
.aos-card::before { content: ''; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(120% 100% at 0% 0%, rgba(201,169,110,.16), transparent 60%);
  transition: opacity .45s var(--ease); }
.aos-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(110,20,35,.16); border-color: rgba(201,169,110,.5); }
.aos-card:hover::before { opacity: 1; }
.aos-ic {
  position: relative; width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: #6E1423;
  background: linear-gradient(135deg, rgba(110,20,35,.1), rgba(201,169,110,.16)); border: 1px solid rgba(110,20,35,.12);
  transition: transform .5s var(--ease);
}
.aos-card:hover .aos-ic { transform: translateY(-3px) rotate(-4deg); }
.aos-ic svg { width: 28px; height: 28px; }
.aos-card h3 { position: relative; font-family: var(--font-head); font-size: 1.4rem; font-weight: 500; color: var(--text); letter-spacing: -.01em; margin-bottom: 10px; }
.aos-card p { position: relative; font-family: var(--font-body); font-size: .9rem; font-weight: 300; line-height: 1.75; color: var(--text-m); margin-bottom: 20px; }
.aos-req { position: relative; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #6E1423; opacity: .55; transition: opacity .4s var(--ease), gap .4s var(--ease); }
.aos-req svg { width: 14px; height: 14px; }
.aos-card:hover .aos-req { opacity: 1; gap: 12px; }

@media (max-width: 900px) { .aos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aos-grid { grid-template-columns: 1fr; } }

/* ── Slide-over inquiry panel ── */
.aip-overlay { position: fixed; inset: 0; z-index: 3400; background: rgba(40,22,26,.42); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.aip-overlay.open { opacity: 1; visibility: visible; }
.aip {
  position: fixed; top: 0; right: 0; z-index: 3401; height: 100%; width: 480px; max-width: 92vw;
  display: flex; flex-direction: column; overflow: hidden;
  background: radial-gradient(120% 60% at 50% 0%, #FCF8F1, var(--beige) 60%);
  box-shadow: -30px 0 80px rgba(40,22,26,.22); border-left: 1px solid rgba(201,169,110,.3);
  transform: translateX(100%); transition: transform .55s var(--ease);
}
.aip.open { transform: translateX(0); }
.aip-head { flex-shrink: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 30px 30px 0; }
.aip-eyebrow { font-family: var(--font-body); font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #C9A96E; margin-bottom: 12px; }
.aip-head h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 400; line-height: 1.12; letter-spacing: -.01em; color: var(--text); }
.aip-head h2 em { font-style: italic; color: #6E1423; }
.aip-x { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-m); background: rgba(110,20,35,.05); border: 1px solid rgba(110,20,35,.12); cursor: pointer; transition: color .3s, background .3s, transform .3s; }
.aip-x:hover { color: #6E1423; background: #fff; transform: rotate(90deg); }
.aip-x svg { width: 14px; height: 14px; }

.aip-body { flex: 1; overflow-y: auto; padding: 24px 30px 30px; position: relative; }
.aip-selected { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #FBF4EA, #F6E9DA); border: 1px solid rgba(201,169,110,.4); border-radius: 14px; padding: 14px 16px; margin-bottom: 24px; }
.aip-selected .ic { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #6E1423; background: rgba(110,20,35,.08); }
.aip-selected .ic svg { width: 20px; height: 20px; }
.aip-selected .lbl { font-family: var(--font-body); font-size: .56rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-l); }
.aip-selected .val { font-family: var(--font-head); font-size: 1.1rem; font-weight: 500; color: var(--text); }

.aip-form { display: flex; flex-direction: column; gap: 16px; }
.aip-field { display: flex; flex-direction: column; gap: 7px; }
.aip-field label { font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-m); }
.aip-field input, .aip-field select, .aip-field textarea { font-family: var(--font-body); font-size: .92rem; color: var(--text); background: var(--white); border: 1.5px solid rgba(201,169,110,.3); border-radius: 12px; padding: 13px 15px; width: 100%; box-sizing: border-box; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.aip-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.aip-field input:focus, .aip-field select:focus, .aip-field textarea:focus { outline: none; border-color: #6E1423; box-shadow: 0 0 0 3px rgba(110,20,35,.08); }
.aip-field input::placeholder, .aip-field textarea::placeholder { color: var(--text-l); }
.aip-field.error input, .aip-field.error textarea { border-color: #c2573f; box-shadow: 0 0 0 3px rgba(194,87,63,.12); }
.aip-opt { font-weight: 400; color: var(--text-l); text-transform: none; letter-spacing: .02em; }
.aip-upload { display: flex; align-items: center; gap: 12px; border: 1.5px dashed rgba(201,169,110,.45); border-radius: 12px; padding: 13px 15px; cursor: pointer; background: linear-gradient(135deg, #FBF6EF, var(--white)); transition: border-color .3s; }
.aip-upload:hover { border-color: #6E1423; }
.aip-upload input { display: none; }
.aip-upload .ic { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #6E1423; background: rgba(201,169,110,.14); }
.aip-upload .ic svg { width: 18px; height: 18px; }
.aip-upload b { display: block; font-family: var(--font-body); font-size: .85rem; font-weight: 500; color: var(--text); }
.aip-upload span { font-family: var(--font-body); font-size: .74rem; font-weight: 300; color: var(--text-m); }

.aip-submit { margin-top: 6px; width: 100%; justify-content: center; font-family: var(--font-body); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 16px; border-radius: 50px; border: none; cursor: pointer; color: #fff; background: linear-gradient(135deg, #8a2433, #6E1423 55%, #54101b); box-shadow: 0 12px 30px rgba(110,20,35,.3); display: inline-flex; align-items: center; gap: 10px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.aip-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(110,20,35,.42); }
.aip-help { text-align: center; margin-top: 14px; font-family: var(--font-body); font-size: .72rem; font-weight: 300; color: var(--text-l); }

/* Success */
.aip-success { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px 30px; background: radial-gradient(125% 80% at 50% 0%, #FDFAF4, #F6E9DA 70%); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .5s var(--ease), transform .6s var(--ease), visibility .5s; }
.aip-success.show { opacity: 1; visibility: visible; transform: translateY(0); }
.aip-ring { width: 80px; height: 80px; margin: 0 auto 10px; }
.aip-ring svg { width: 100%; height: 100%; fill: none; }
.aip-ring .c { stroke: rgba(201,169,110,.55); stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; }
.aip-ring .k { stroke: #6E1423; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 42; stroke-dashoffset: 42; }
.aip-success.show .aip-ring .c { animation: aipCircle 1s var(--ease) .15s forwards; }
.aip-success.show .aip-ring .k { animation: aipCheck .55s var(--ease) .9s forwards; }
@keyframes aipCircle { to { stroke-dashoffset: 0; } }
@keyframes aipCheck { to { stroke-dashoffset: 0; } }
.aip-success h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 400; color: var(--text); margin: 16px 0 12px; }
.aip-success h2 em { font-style: italic; color: #6E1423; }
.aip-success p { font-family: var(--font-body); font-size: .92rem; font-weight: 300; line-height: 1.8; color: var(--text-m); max-width: 360px; margin: 0 auto 26px; }
.aip-success-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 280px; }
.aip-sbtn { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 15px; border-radius: 50px; cursor: pointer; border: none; text-decoration: none; text-align: center; transition: transform .35s var(--ease), box-shadow .35s, background .35s; }
.aip-sbtn.primary { color: #fff; background: linear-gradient(135deg, #8a2433, #6E1423 55%, #54101b); box-shadow: 0 12px 30px rgba(110,20,35,.3); }
.aip-sbtn.primary:hover { transform: translateY(-2px); }
.aip-sbtn.wa { color: #fff; background: #25D366; box-shadow: 0 10px 26px rgba(37,211,102,.34); }
.aip-sbtn.wa:hover { transform: translateY(-2px); background: #1ebe5d; }

@media (max-width: 520px) { .aip { width: 100%; max-width: 100%; } .aip-head { padding: 24px 22px 0; } .aip-body { padding: 20px 22px 26px; } }
