/* ===== PAINTING YOUR ART OUT – SHARED STYLESHEET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #7b47c3;
  --purple-dark: #5f35a0;
  --purple-light: #f3eeff;
  --text: #1a1a2e;
  --text-muted: #555;
  --border: #e0d6f5;
  --white: #ffffff;
  --radius: 12px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); line-height: 1.65; background: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { line-height: 1.2; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 8px; }
.section-title { font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 700; margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); text-decoration: none; }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); text-decoration: none; }
.btn-outline-purple { border: 2px solid var(--purple); color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple-light); text-decoration: none; }
.btn-gap { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header/Nav */
header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
nav { display: flex; align-items: center; justify-content: space-between; height: 54px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.95rem; color: var(--purple); }
.logo img { height: 28px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text); transition: background 0.15s; }
.nav-links a:hover { background: var(--purple-light); text-decoration: none; }
.nav-links .btn-primary { color: #fff; padding: 10px 20px; }
.nav-links .btn-primary:hover { background: var(--purple-dark); }
.dropdown { position: relative; }
.dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.12); min-width: 220px; padding: 8px 0; z-index: 200; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 18px; font-size: 0.88rem; color: var(--text); }
.dropdown-menu a:hover { background: var(--purple-light); text-decoration: none; }
.dropdown-menu .divider { height: 1px; background: var(--border); margin: 6px 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 54px; left: 0; right: 0; background: #fff; padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; border-radius: 0; border-bottom: 1px solid var(--border); }
  .dropdown-menu { position: static; box-shadow: none; display: none; padding-left: 16px; }
  .dropdown.open .dropdown-menu { display: block; }
  .hamburger { display: block; }
}

/* Page hero */
.page-hero { background: linear-gradient(135deg, #2a0a5e 0%, var(--purple) 60%, #a06de0 100%); color: #fff; padding: 52px 0; text-align: center; }
.page-hero .section-label { color: rgba(255,255,255,0.8); }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; opacity: 0.9; max-width: 560px; margin: 0 auto 22px; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.card { background: #fff; border-radius: var(--radius); padding: 24px 22px; box-shadow: 0 2px 16px rgba(123,71,195,0.06); border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(123,71,195,0.12); }
.card-icon { width: 44px; height: 44px; background: var(--purple-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }

/* Feature grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon { flex-shrink: 0; width: 42px; height: 42px; background: var(--purple-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feature h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature p { font-size: 0.85rem; color: var(--text-muted); }

/* Area tags */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area-tag { background: var(--purple-light); color: var(--purple); padding: 8px 16px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: 0 2px 14px rgba(123,71,195,0.07); }
.testimonial .quote { font-size: 2rem; color: var(--purple); line-height: 1; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; }
.testimonial .author { font-weight: 700; font-size: 0.9rem; color: var(--purple); }

/* FAQ */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; padding: 18px 24px; font-weight: 600; font-size: 0.97rem; cursor: pointer; border: none; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--purple); flex-shrink: 0; }
.faq-q.open::after { content: '−'; }
.faq-a { display: none; padding: 0 24px 18px; color: var(--text-muted); font-size: 0.93rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: #fff; text-align: center; padding: 56px 24px; }
.cta-banner h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 10px; }
.cta-banner p { opacity: 0.9; margin-bottom: 24px; font-size: 1rem; }
.cta-banner .btn-gap { justify-content: center; }

/* Contact form */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail a { color: var(--text); font-weight: 600; }
.contact-detail a:hover { color: var(--purple); text-decoration: none; }
.contact-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.contact-badge { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--purple); }
form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 5px; }
form input, form select, form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; margin-bottom: 18px; }
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--purple); }
form textarea { height: 120px; resize: vertical; }
form .btn-submit { width: 100%; text-align: center; border: none; font-size: 1rem; padding: 16px; background: var(--purple); color: #fff; border-radius: 50px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
form .btn-submit:hover { background: var(--purple-dark); }
@media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; } }

/* Blog article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 1.4rem; margin: 36px 0 14px; color: var(--text); }
.article-body h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text); }
.article-body p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 12px 0 20px 20px; color: var(--text-muted); }
.article-body li { margin-bottom: 6px; line-height: 1.7; }
.article-body blockquote { border-left: 4px solid var(--purple); padding: 16px 24px; background: var(--purple-light); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text); margin: 28px 0; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--purple); text-decoration: underline; }

/* Footer */
footer { background: #1a0a3e; color: rgba(255,255,255,0.75); padding: 48px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 36px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-about { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
footer h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
footer ul li a:hover { color: #fff; text-decoration: none; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 8px; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* Service page specific */
.service-hero-info { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 20px 24px; margin-top: 24px; display: inline-block; }
.price-tag { font-size: 1.6rem; font-weight: 900; color: #ffd966; }
.includes-list { list-style: none; margin: 16px 0; }
.includes-list li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; }
.includes-list li::before { content: '✓ '; color: #ffd966; font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.info-card { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(123,71,195,0.08); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--purple); }
.info-card ul { list-style: none; }
.info-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.info-card ul li:last-child { border-bottom: none; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.benefit { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); }
.benefit .ico { font-size: 1.6rem; margin-bottom: 10px; }
.benefit h4 { font-size: 0.95rem; margin-bottom: 6px; }
.benefit p { font-size: 0.85rem; color: var(--text-muted); }
