/* =========================================
   SIMPLYZE — Global Stylesheet
   ========================================= */

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

:root {
  --purple-dark:   #7B35A0;
  --purple-light:  #9B5DC0;
  --teal:          #2BBCD4;
  --gold:          #F0A830;
  --text-dark:     #2A2A2A;
  --text-mid:      #555555;
  --text-light:    #888888;
  --bg-white:      #FFFFFF;
  --bg-light:      #F8F5FC;
  --bg-dark:       #1A0D26;
  --border:        #E8DFF2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-mid); }

/* ---- NAV ---- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img {
  height: 36px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-dark);
}

.nav-cta {
  background: var(--purple-dark);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #6a3490 !important; color: #fff !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--purple-dark);
  color: #fff;
}
.btn-primary:hover { background: #6a3490; }

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-dark);
}
.btn-outline:hover { background: var(--purple-dark); color: #fff; }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #b8890f; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 80px 0; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2E1048 100%);
  color: #fff;
  padding: 120px 0 100px;
  text-align: center;
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.gold-accent { color: var(--gold); }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  background: var(--bg-light);
  color: var(--purple-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(123,63,160,0.12);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.6rem; }

/* ---- DIVIDER ACCENT ---- */
.accent-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--purple-dark), #4A1870);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-strip h2 { color: #fff; margin-bottom: 1rem; }
.cta-strip p  { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- ABOUT TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-white);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--purple-light);
  margin: 0 auto 1.25rem;
  display: block;
  object-fit: cover;
}

.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role { color: var(--purple-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }

/* ---- CONTACT FORM ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.form-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--purple-dark);
  box-shadow: 0 0 0 3px rgba(123,63,160,0.12);
}

textarea { resize: vertical; min-height: 140px; }

.form-submit { width: 100%; padding: 0.9rem; font-size: 1rem; }

/* ---- SERVICES PAGE ---- */
.services-hero {
  background: linear-gradient(135deg, var(--bg-dark), #2E1048);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.services-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.services-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.service-row:last-child { border-bottom: none; }

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.service-visual {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-text .section-label { text-align: left; }
.service-text h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-text p  { margin-bottom: 1.5rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 28px; opacity: 0.85; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.85rem; }

/* ---- ABOUT HERO ---- */
.about-hero {
  background: linear-gradient(135deg, var(--bg-dark), #2E1048);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.about-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.about-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 1.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.value-card .v-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { margin-bottom: 0.5rem; color: var(--purple-dark); }

/* ---- UTILITY ---- */
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
