*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --purple: #6B21E8; --purple-dark: #4C0FAB; --purple-light: #EDE9FE;
  --purple-mid: #7C3AED; --white: #FFFFFF; --off-white: #F8F7FF;
  --text: #1A1228; --text-muted: #6B7280; --green: #22C55E; --gold: #F5C842;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 6%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,33,232,0.08);
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta { background: var(--purple) !important; color: white !important; padding: 10px 22px; border-radius: 8px; font-weight: 600 !important; box-shadow: 0 4px 14px rgba(107,33,232,0.3); transition: background 0.2s !important; }
.nav-cta:hover { background: var(--purple-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 6% 80px; position: relative; background: var(--off-white); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(107,33,232,0.12) 0%, transparent 70%); border-radius: 50%; }
.hero-content { max-width: 580px; z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--purple-light); color: var(--purple); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 28px; animation: fadeUp 0.7s 0.2s ease both; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5.5vw, 68px); line-height: 1.1; font-weight: 900; color: var(--text); margin-bottom: 24px; animation: fadeUp 0.7s 0.35s ease both; }
.hero h1 span { color: var(--purple); }
.hero p { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 480px; margin-bottom: 40px; animation: fadeUp 0.7s 0.5s ease both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.65s ease both; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; animation: fadeUp 0.7s 0.8s ease both; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--purple); }
.stat span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.hero-logo-img { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 360px; height: auto; z-index: 1; animation: fadeLeft 0.9s 0.4s ease both; filter: drop-shadow(0 20px 40px rgba(107,33,232,0.2)); }

/* BUTTONS */
.btn-primary { background: var(--purple); color: white; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; box-shadow: 0 6px 20px rgba(107,33,232,0.3); transition: background 0.2s, transform 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); }
.btn-secondary { background: white; color: var(--purple); padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; border: 2px solid var(--purple-light); transition: border-color 0.2s, transform 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--purple); transform: translateY(-2px); }

/* SHARED SECTION */
section { padding: 96px 6%; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 900; line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 540px; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid)); padding: 160px 6% 80px; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* SERVICES */
.services-preview { background: white; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: var(--off-white); border-radius: 20px; padding: 36px 32px; border: 1px solid transparent; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--purple-mid)); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: var(--purple-light); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(107,33,232,0.1); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; background: var(--purple-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.service-tag { display: inline-block; background: var(--purple-light); color: var(--purple); padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.service-tag.green { background: rgba(34,197,94,0.12); color: #16A34A; }
.view-all-wrap { text-align: center; margin-top: 48px; }

/* TRUST BAR */
.trust-bar { background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%); padding: 60px 6%; display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; text-align: center; }
.trust-item { color: white; }
.trust-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; margin-bottom: 4px; }
.trust-item span { font-size: 14px; opacity: 0.8; }
.trust-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* ABOUT */
.about-preview { background: var(--off-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.badge-item { display: flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--purple-light); padding: 10px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card { background: white; border-radius: 18px; padding: 28px 24px; box-shadow: 0 4px 20px rgba(107,33,232,0.07); }
.about-stat-card.purple { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); color: white; grid-column: 1 / -1; }
.about-stat-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--purple); margin-bottom: 6px; }
.about-stat-card.purple strong { color: white; font-size: 42px; }
.about-stat-card p { font-size: 14px; color: var(--text-muted); }
.about-stat-card.purple p { color: rgba(255,255,255,0.8); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.pricing-card { background: var(--off-white); border-radius: 24px; padding: 40px 36px; border: 2px solid transparent; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.pricing-card.featured { background: linear-gradient(145deg, var(--purple-dark), var(--purple)); color: white; border-color: transparent; box-shadow: 0 20px 60px rgba(107,33,232,0.3); }
.pricing-card:not(.featured):hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(107,33,232,0.1); border-color: var(--purple-light); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1a1228; padding: 5px 18px; border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--purple); margin: 16px 0 4px; }
.pricing-card.featured .price { color: white; }
.pricing-card .price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.7); }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid rgba(107,33,232,0.08); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--gold); }
.pricing-card .btn-outline { display: block; text-align: center; padding: 14px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; border: 2px solid var(--purple); color: var(--purple); transition: background 0.2s, color 0.2s; }
.pricing-card .btn-outline:hover { background: var(--purple); color: white; }
.pricing-card.featured .btn-outline { background: white; color: var(--purple); border-color: white; }
.pricing-card.featured .btn-outline:hover { background: var(--purple-light); }
.pricing-note { text-align: center; margin-top: 48px; padding: 28px; background: var(--purple-light); border-radius: 16px; }
.pricing-note p { font-size: 15px; color: var(--purple-dark); font-weight: 500; }
.pricing-note strong { font-size: 18px; display: block; margin-bottom: 6px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--purple-light); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gallery-item:nth-child(3n+1) { grid-column: span 1; }
.gallery-placeholder { text-align: center; padding: 40px 20px; }
.gallery-placeholder .icon { font-size: 48px; margin-bottom: 12px; display: block; }
.gallery-placeholder p { font-size: 14px; color: var(--purple); font-weight: 500; }
.gallery-upload-note { text-align: center; margin-top: 48px; padding: 36px; background: var(--off-white); border-radius: 20px; border: 2px dashed var(--purple-light); }
.gallery-upload-note h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--purple); }
.gallery-upload-note p { font-size: 15px; color: var(--text-muted); }

/* CONTACT PAGE */
.contact { background: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.icon-box { width: 46px; height: 46px; flex-shrink: 0; background: var(--purple-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-detail h4 { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail a, .contact-detail p { font-size: 16px; font-weight: 500; color: var(--text); text-decoration: none; }
.contact-detail a:hover { color: var(--purple); }
.contact-form { background: var(--off-white); border-radius: 24px; padding: 44px 40px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid #E5E7EB; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 15px; background: white; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(107,33,232,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; background: var(--purple); color: white; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; box-shadow: 0 6px 20px rgba(107,33,232,0.3); transition: background 0.2s, transform 0.2s; margin-top: 6px; }
.form-submit:hover { background: var(--purple-dark); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 56px 6% 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 13px; max-width: 240px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact p, .footer-contact a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translate(40px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-logo-img { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-divider { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px 6%; border-bottom: 1px solid var(--purple-light); gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 72px 5%; }
  .trust-bar { gap: 32px; padding: 48px 5%; }
}
