
:root{
  --bg:#ffffff;
  --primary:#6b3fb5; /* purple from logo */
  --accent:#f7a31b;  /* orange */
  --muted:#6b7280;
  --radius:12px;
  --container:1100px;
  --gap:20px;
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font-family);
  background:var(--bg);
  color:#0f1724;
  line-height:1.5;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:28px 20px;
}

/* Header */
.site-header{
  border-bottom:1px solid #f0eef6;
  background:#fff;
  position:sticky;
  top:0;
  z-index:60;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--gap);
}
.logo-img{height:56px; width:auto}
.nav{
  display:flex;
  gap:14px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:8px;
}
.nav a:hover{background:#fbf5ff;color:var(--primary)}
.nav-toggle{display:none;background:none;border:0;font-size:1.25rem}

/* Hero */
.hero{
  padding:48px 0;
  background:linear-gradient(180deg,#fff8f0 0%, #ffffff 100%);
}
.hero-inner{
  display:flex;
  gap:30px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.hero-text{flex:1 1 320px}
.hero-text h1{font-size:2rem;margin:0 0 12px;color:var(--primary)}
.lead{color:var(--muted);margin:0 0 18px}
.btn{
  display:inline-block;
  background:var(--accent);
  color:white;
  text-decoration:none;
  padding:10px 18px;
  border-radius:10px;
  border:0;
  cursor:pointer;
}
.btn-ghost{background:transparent;color:var(--primary);border:1px solid rgba(107,63,181,0.12)}

/* Sections */
.section{padding:36px 0}
.section.alt{background:#fbfbff}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
  margin-top:18px;
}
.card{
  padding:18px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 2px 10px rgba(15,23,36,0.04);
}
.card h3{color:var(--primary)}

/* About */
.about-inner{display:flex;gap:24px;align-items:center;flex-wrap:wrap}
.details{background:#fff;padding:14px;border-radius:10px;box-shadow:0 2px 8px rgba(15,23,36,0.04)}

/* Contact form */
.contact-form{max-width:640px;margin-top:12px;display:grid;gap:12px}
.contact-form label{display:block;font-size:0.95rem;color:var(--muted)}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #f0eefe;
  outline:none;
  font-size:1rem;
}
.form-row{display:flex;gap:12px}
.form-status{color:var(--muted);font-size:0.95rem}

/* Footer */
.site-footer{border-top:1px solid #f0eef6;padding:18px 0;text-align:center;color:var(--muted);font-size:0.95rem}

/* Responsive */
@media (max-width:800px){
  .nav{display:none;position:absolute;right:20px;top:70px;background:#fff;padding:12px;border-radius:8px;box-shadow:0 6px 18px rgba(2,6,23,0.08)}
  .nav.open{display:flex;flex-direction:column}
  .nav-toggle{display:inline-block}
  .hero-inner{flex-direction:column-reverse;align-items:flex-start}
}

/* === Inserted by ChatGPT: header with logo and phone === */
:root {
  --brand-color: #6b46c1; /* purple */
  --accent-color: #e11d48; /* red */
  --text-color: #1f2937;
  --muted-color: #6b7280;
  --bg-color: #ffffff;
  --border-color: #e5e7eb;
}

* { box-sizing: border-box; }

.site-header {
  width: 100%;
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-text {
  font-weight: 700;
  color: var(--text-color);
  font-size: 18px;
  letter-spacing: 0.2px;
}

.phone {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: var(--brand-color);
  padding: 10px 14px;
  border: 2px solid var(--brand-color);
  border-radius: 10px;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.phone:hover {
  background: var(--brand-color);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 640px) {
  .brand-text { display: none; } /* keep it clean on mobile */
  .brand-logo { height: 40px; }
  .phone { font-size: 16px; padding: 8px 12px; }
}
/* === End inserted header styles === */
