/* ── VARIABLES ── */
:root {
  --primary: #46007a;
  --primary-light: #6b0fb5;
  --accent: #00c8a0;
  --dark: #1a1a2e;
  --text: #444;
  --light-bg: #f7f4fb;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--primary);
  color: #ddd;
  font-size: 13px;
  padding: 8px 20px;
}
.topbar-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  align-items: center;
}
.topbar a {
  color: #ddd;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--accent); }
.topbar .sep { opacity: 0.4; }

/* ── HEADER ── */
header {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2a44 100%);
  color: white;
  text-align: center;
  padding: 48px 20px 36px;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
header::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(0,200,160,0.06);
  border-radius: 50%;
}
.logo-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
  color: var(--accent);
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
}
header h1 span { color: var(--accent); }
.tagline {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── NAVBAR ── */
nav {
  background: #1f2a44;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  display: inline-block;
}
nav a:hover, nav a.active {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
}

/* ── PAGE BANNER ── */
.page-banner {
  background: var(--light-bg);
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #ede8f5;
}
.page-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--primary);
  margin-bottom: 8px;
}
.page-banner p {
  color: #888;
  font-size: 15px;
}

/* ── HERO ── */
.hero {
  background: var(--light-bg);
  padding: 60px 20px;
  text-align: center;
}
.hero-inner {
  max-width: 700px;
  margin: auto;
}
.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 40px);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s;
  letter-spacing: 0.5px;
  gap: 6px;
}
.btn i { margin-right: 6px; }
.btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(70,0,122,0.3);
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  margin-left: 10px;
}
.btn.outline:hover {
  background: var(--primary);
  color: white;
}

/* ── PAGE WRAPPER ── */
.page {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  margin-bottom: 32px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title p {
  font-size: 15px;
  color: #888;
  max-width: 500px;
  margin: auto;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.services-grid-lg {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: white;
  border: 1px solid #ede8f5;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(70,0,122,0.04);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(70,0,122,0.12);
  border-color: var(--primary-light);
}
.service-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
}
.service-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ── WHY US ── */
.why-us {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2a44 100%);
  border-radius: 16px;
  padding: 40px;
  margin-top: 30px;
  color: white;
}
.why-us .section-title h2 { color: white; }
.why-us .section-title p { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-item i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.why-item span {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--primary);
  margin-bottom: 16px;
}
.about-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}
.about-text .btn { margin-top: 8px; }
.about-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  color: white;
}
.about-visual i {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
}
.about-visual p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* ── CTA BOX ── */
.cta-box {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid #ede8f5;
}
.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--primary);
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-icon.green { background: #25d366; }
.contact-item strong {
  display: block;
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-item a, .contact-item span {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  display: block;
}
.contact-item a:hover { color: var(--primary); }

.map-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #1f2a44 100%);
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  color: white;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-placeholder i {
  font-size: 56px;
  color: var(--accent);
}
.map-placeholder p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.map-placeholder .btn.outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
  margin-left: 0;
}
.map-placeholder .btn.outline:hover {
  background: white;
  color: var(--primary);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 40px 20px 0;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding-bottom: 30px;
}
.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
}
.footer-col a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  display: block;
  line-height: 2;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px;
  font-size: 13px;
  color: #666;
  max-width: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 6px; }
  .topbar .sep { display: none; }
  .about-section, .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-visual { display: none; }
  .why-us { padding: 28px 20px; }
  .cta-box { padding: 28px 20px; }
  .btn.outline { margin-left: 0; margin-top: 10px; }
}

@media (max-width: 480px) {
  header { padding: 36px 16px 28px; }
  .page { padding: 28px 16px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  nav { overflow-x: auto; }
  .nav-inner { flex-wrap: nowrap; justify-content: flex-start; }
  .hero { padding: 36px 16px; }
}
