/* =============================================
   eKitwi Landing Page – landing.css
   ============================================= */

/* --- Variables -------------------------------- */
:root {
  --clr-bg:         #0f0f13;
  --clr-surface:    #1a1a22;
  --clr-surface-2:  #141418;
  --clr-accent:     rgb(135, 40, 190);
  --clr-text:       #e5e5ef;
  --clr-muted:      rgba(229, 229, 239, 0.52);
  --clr-card:       rgba(255, 255, 255, 0.04);
  --clr-card-hover: rgba(255, 255, 255, 0.08);
  --clr-border:     rgba(255, 255, 255, 0.08);
  --nav-height:     68px;
  --font-heading:   'Montserrat', sans-serif;
}

/* --- Base ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

/* Fomantic's .pushable adds overflow:hidden – override so page can scroll */
body.pushable {
  background: var(--clr-bg) !important;
  overflow: auto !important;
}

.pusher {
  background: transparent !important;
  min-height: 100vh;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

/* --- Sidebar ---------------------------------- */
#index-sidebar {
  background: var(--clr-surface) !important;
  border-right: 1px solid var(--clr-border) !important;
}

#index-sidebar .sidebar-header {
  padding: 1.2em 1.4em;
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: 0.5em;
}

#index-sidebar .sidebar-header .brand-name {
  color: #fff !important;
  font-size: 1.4em;
  font-family: var(--font-heading);
  font-weight: 700;
}

#index-sidebar .item {
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 6px !important;
  margin: 2px 8px !important;
}

#index-sidebar .item:hover,
#index-sidebar .active.item {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* --- Navbar ----------------------------------- */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

#main-nav.scrolled {
  background: rgba(15, 15, 19, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo {
  height: 30px;
  width: auto;
}

.nav-brand .brand-name,
#main-nav .brand-name {
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

/* Nav links */
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.nav-cta {
  background: var(--clr-accent);
  color: #1a1a2e !important;
  font-weight: 700;
  margin-left: 0.5rem;
}

.nav-link.nav-cta:hover {
  background: #4f0467;
  color: #ababab !important;
}

/* Mobile toggler */
.nav-toggler {
  color: rgba(255, 255, 255, 0.9) !important;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: auto;
}

/* --- HERO ------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 3.5rem) 0 4.5rem;
  background: var(--clr-bg);
  overflow: hidden;
}

/* subtle green glow top-right */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 80% 15%, rgba(83, 12, 86, 0.358) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22);
  color: var(--clr-accent);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
}

.hero-typing-row {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--clr-muted);
  margin-bottom: 0.8rem;
  min-height: 1.5em;
}

.typing-text { color: var(--clr-accent); }

.typing-cursor {
  color: var(--clr-accent);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 auto 1.3rem;
  max-width: 800px;
  color: #fff;
}

.hero-accent {
  display: block;
  color: var(--clr-accent);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-muted);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-accent);
  color: #1a1a2e !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #4f0467;
  transform: translateY(-2px);
  color: #ababab !important;
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

/* --- SERVICES --------------------------------- */
.services-section {
  padding: 5rem 0;
  background: var(--clr-surface);
}

/* --- ABOUT ------------------------------------ */
.about-section {
  padding: 5rem 0;
  background: var(--clr-bg);
}

/* --- FOOTER ----------------------------------- */
.site-footer {
  background: var(--clr-surface-2);
  border-top: 1px solid var(--clr-border);
  padding: 2.5rem 0 1.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo { height: 26px; width: auto; }

.footer-brand .brand-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-tagline {
  color: var(--clr-muted);
  font-size: 0.88rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--clr-border);
  padding-top: 1.25rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin: 0;
}

/* --- SHARED SECTION HELPERS ------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.75rem;
}

.title-accent { color: var(--clr-accent); }

.section-sub {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- SERVICE CARDS ---------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.25s, transform 0.2s, box-shadow 0.2s;
}

.svc-card:hover {
  background: var(--clr-card-hover);
  border-color: rgba(213, 73, 241, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.svc-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.6rem;
}

.svc-card p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

/* --- ABOUT GRID ------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .badge-pill { margin-bottom: 1rem; }
.about-text .section-title { text-align: left; margin-bottom: 1.25rem; }

.about-text p {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values 2×2 grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.val-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.val-card:hover {
  background: var(--clr-card-hover);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.val-icon {
  width: 40px;
  height: 40px;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.val-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin: 0 0 0.4rem;
}

.val-card p {
  color: var(--clr-muted);
  font-size: 0.83rem;
  line-height: 1.5;
  margin: 0;
}

/* --- CONTACT SECTION -------------------------- */
.contact-section {
  padding: 5rem 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.contact-card:hover {
  background: var(--clr-card-hover);
  border-color: rgba(213, 73, 241, 0.22);
  transform: translateX(4px);
  text-decoration: none;
  color: inherit;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.email-icon { 
  color: #d8b7ed;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22); 
}
.wpp-icon   { 
  color: #d8b7ed;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22);
}
.ig-icon    {
  color: #d8b7ed;
  background: rgba(66, 8, 71, 0.12);
  border: 1px solid rgba(213, 73, 241, 0.22);
}

.contact-card-label {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 0.15rem;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* Contact form */
.contact-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-size: 0.93rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  background: rgba(255, 255, 255, 0.1);
}

.form-submit {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 0.75rem;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin: 0;
}

/* --- RESPONSIVE ------------------------------- */
@media (max-width: 991px) {
  .cards-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text .section-title { text-align: center; }
  .contact-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 767px) {
  .cards-grid      { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .hero-ctas       { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
  .form-row        { grid-template-columns: 1fr; }
}
