/* =============================================================
   Sankalp Group – Appointment System
   Design: Editorial minimalism · navy + gold · Fraunces display
   ============================================================= */

:root {
  --brand:         #0a2540;
  --brand-2:       #0f2e4f;
  --brand-soft:    #eef2f7;
  --gold:          #c9a227;
  --gold-dark:     #a7851a;
  --text:          #0b1623;
  --text-2:        #4a5568;
  --text-3:        #718096;
  --line:          #e5e7eb;
  --bg:            #ffffff;
  --bg-2:          #f7f8fa;
  --bg-3:          #f1f3f7;
  --danger:        #dc2626;
  --success:       #15803d;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.04);
  --shadow:        0 4px 20px rgba(10,37,64,.08);
  --shadow-lg:     0 20px 50px rgba(10,37,64,.12);
  --display:       'Fraunces', Georgia, serif;
  --body:          'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease:          cubic-bezier(.25,.8,.25,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

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

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--text-3); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.lead { font-size: 17px; color: var(--text-2); line-height: 1.6; max-width: 620px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(10,37,64,.25); }
.btn--gold { background: var(--gold); color: var(--brand); }
.btn--gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,162,39,.3); }
.btn--dark { background: var(--brand); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn--ghost-dark { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost-dark:hover { background: var(--bg-2); border-color: var(--brand); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10,37,64,.06);
}
.nav__wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; }
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img { height: 38px; width: auto; }
.nav__divider { width: 1px; height: 28px; background: var(--line); }
.nav__logo2 { height: 32px !important; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color .2s; position: relative;
}
.nav__links a:hover { color: var(--brand); }
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; background: none; border: 0; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin-left: auto; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5f 55%, #0f2e4f 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(201,162,39,.18), transparent 60%),
    radial-gradient(600px 300px at 10% 90%, rgba(201,162,39,.08), transparent 60%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; opacity: .3; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero__title {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero__sub { font-size: 18px; color: rgba(255,255,255,.75); max-width: 540px; margin-bottom: 36px; line-height: 1.6; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__trust { display: flex; gap: 44px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--gold); }
.hero__trust span { font-size: 13px; color: rgba(255,255,255,.6); }

.hero__visual { position: relative; }
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  transform: rotate(-1.5deg);
  transition: transform .6s var(--ease);
}
.hero__card:hover { transform: rotate(0deg) translateY(-4px); }
.hero__card-top { display: flex; justify-content: space-between; margin-bottom: 24px; }
.tag {
  display: inline-block;
  padding: 5px 12px; border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  background: rgba(201,162,39,.2); color: var(--gold); border: 1px solid rgba(201,162,39,.3);
}
.tag--live { background: rgba(21,128,61,.2); color: #4ade80; border-color: rgba(74,222,128,.3); }
.hero__card h3 { font-size: 36px; color: #fff; margin-bottom: 8px; }
.hero__card p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.hero__card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.hero__card-stats b { display: block; font-family: var(--display); color: var(--gold); font-size: 17px; margin-bottom: 2px; font-weight: 500; }
.hero__card-stats i { font-style: normal; font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; }
.hero__card-link { color: var(--gold); font-weight: 500; font-size: 14px; }
.hero__card-link:hover { color: #fff; }

/* ===== Sections ===== */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--center { text-align: center; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 400; margin-bottom: 16px; }

/* ===== BENEFITS ===== */
.benefits { padding: 100px 20px; }
.benefits__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.benefit {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all .35s var(--ease);
  position: relative;
}
.benefit::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(180deg, transparent, rgba(10,37,64,.02));
  opacity: 0; transition: opacity .35s;
}
.benefit:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.benefit:hover::before { opacity: 1; }
.benefit__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.benefit h3 { font-size: 20px; margin-bottom: 10px; }
.benefit p { color: var(--text-2); font-size: 15px; }

/* ===== PROJECT ===== */
.project { background: var(--bg-2); padding: 100px 20px; }
.project__wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.project__info h2 { font-size: clamp(32px, 3.8vw, 46px); margin-bottom: 16px; }
.project__highlights { list-style: none; padding: 0; margin: 32px 0; }
.project__highlights li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; color: var(--text-2); font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.project__highlights li span { color: var(--gold); font-size: 10px; margin-top: 7px; flex-shrink: 0; }
.project__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.project__media {
  position: relative;
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.project__media::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 20% 20%, rgba(201,162,39,.2), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 20px);
}
.project__badge {
  position: absolute; top: 20px; right: 20px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--gold); color: var(--brand);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
}
.project__media img { position: relative; max-width: 80%; border-radius: 10px; box-shadow: var(--shadow-lg); }

/* ===== EXPERIENCE (3D) ===== */
.experience { padding: 100px 20px; background: var(--brand); color: #fff; position: relative; }
.experience::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 50% 0, rgba(201,162,39,.1), transparent 70%);
  pointer-events: none;
}
.experience .eyebrow { color: rgba(255,255,255,.7); }
.experience h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); }
.experience .lead { color: rgba(255,255,255,.75); margin: 0 auto; }
.experience__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.experience__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== BOOKING ===== */
.booking { padding: 100px 20px; background: var(--bg-2); }
.booking__wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: start; }
.booking__left h2 { font-size: clamp(32px, 4vw, 48px); margin: 10px 0 16px; }
.booking__left .eyebrow { color: var(--text-3); }
.booking__steps-list { margin: 36px 0; }
.step-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; margin-bottom: 8px;
  border-radius: 12px; color: var(--text-2); font-size: 15px;
  transition: all .25s;
}
.step-item b { font-family: var(--display); font-size: 13px; color: var(--text-3); letter-spacing: .05em; }
.step-item.is-active { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.step-item.is-active b { color: var(--gold); }
.step-item.is-done { color: var(--text-3); }
.step-item.is-done::after { content: '✓'; margin-left: auto; color: var(--gold); font-weight: 700; }
.booking__trust { margin-top: 24px; padding: 16px; background: var(--bg-3); border-radius: 12px; font-size: 14px; color: var(--text-2); line-height: 1.9; }
.booking__trust b { color: var(--brand); }

.book-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  min-height: 540px;
  position: relative;
}
.book-card__head { margin-bottom: 28px; }
.book-card__progress {
  height: 4px; background: var(--bg-3); border-radius: 4px; overflow: hidden; margin-bottom: 10px;
}
.book-card__progress span {
  display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--gold));
  width: 25%; transition: width .4s var(--ease);
}
.book-card__step-label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.book-card__step-label span { color: var(--brand); }

/* Steps */
.step { display: none; animation: stepIn .4s var(--ease); }
.step.is-active { display: block; }
@keyframes stepIn { from {opacity:0; transform: translateX(10px)} to {opacity:1; transform:none} }

.step h3 { font-size: 26px; margin-bottom: 6px; }
.step__hint { color: var(--text-3); font-size: 14px; margin: 0 0 24px; }
.step__actions { display: flex; gap: 10px; margin-top: 28px; }
.step__actions .btn { flex: 1; justify-content: center; }
.step__actions .btn--ghost { background: transparent; border-color: var(--line); color: var(--text-2); flex: 0 0 auto; padding-left: 20px; padding-right: 20px; }
.step__actions .btn--ghost:hover { background: var(--bg-2); color: var(--text); }

/* Fields */
.field { display: block; margin-bottom: 16px; }
.field > span {
  display: block; font-size: 13px; font-weight: 500; color: var(--text-2); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: all .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(10,37,64,.06);
}
.field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Date Picker */
.date-picker {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 8px;
}
.date-chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
}
.date-chip:hover:not(:disabled) { border-color: var(--brand); transform: translateY(-2px); }
.date-chip.is-selected {
  background: var(--brand); border-color: var(--brand); color: #fff;
  box-shadow: 0 6px 16px rgba(10,37,64,.2);
}
.date-chip:disabled { opacity: .3; cursor: not-allowed; }
.date-chip__day { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing: .05em; text-transform: uppercase; }
.date-chip.is-selected .date-chip__day { color: rgba(255,255,255,.7); }
.date-chip__date { font-family: var(--display); font-size: 20px; font-weight: 500; margin-top: 4px; }
.date-chip__mon { font-size: 10px; color: var(--text-3); margin-top: 2px; text-transform: uppercase; }
.date-chip.is-selected .date-chip__mon { color: rgba(255,255,255,.7); }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; min-height: 180px; }
.slot-chip {
  padding: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit;
  color: var(--text);
}
.slot-chip:hover { border-color: var(--brand); transform: translateY(-2px); }
.slot-chip.is-selected {
  background: var(--brand); border-color: var(--brand); color: #fff;
  box-shadow: 0 6px 16px rgba(10,37,64,.2);
}
.slots__empty, .slots__loading {
  grid-column: 1/-1;
  text-align: center; color: var(--text-3); padding: 40px 20px;
  border: 1.5px dashed var(--line); border-radius: 12px; font-size: 14px;
}

/* Summary */
.book-summary {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  border: 1px solid var(--line);
}
.book-summary div { display: flex; justify-content: space-between; padding: 6px 0; }
.book-summary div span:first-child { color: var(--text-3); }
.book-summary div span:last-child { font-weight: 600; color: var(--text); }

/* Success */
.step--success { text-align: center; padding: 20px 0; }
.success-icon { margin: 20px auto 24px; width: 80px; height: 80px; border-radius: 50%; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; animation: pop .5s var(--ease); }
@keyframes pop { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }
.success-summary {
  background: var(--bg-2); border-radius: 12px; padding: 20px;
  text-align: left; font-size: 14px; margin: 20px 0;
}
.success-summary div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--line); }
.success-summary div:last-child { border: 0; }
.success-summary span:first-child { color: var(--text-3); }
.success-summary span:last-child { font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #06182d; color: rgba(255,255,255,.7); padding: 70px 20px 0; }
.footer__wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 50px; }
.footer__brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer__cols h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.footer__cols a { display: block; color: rgba(255,255,255,.85); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer__cols a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13px; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.5); }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--brand); color: #fff;
  padding: 14px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 100; opacity: 0;
  transition: all .35s var(--ease);
  max-width: 90vw;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.is-error { background: var(--danger); }
.toast.is-success { background: var(--success); }

/* =============== RESPONSIVE =============== */
@media (max-width: 960px) {
  .hero { padding: 60px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__trust { gap: 20px; flex-wrap: wrap; }
  .benefits__grid { grid-template-columns: 1fr; }
  .project__wrap { grid-template-columns: 1fr; gap: 40px; }
  .project__media { min-height: 260px; padding: 30px; }
  .booking__wrap { grid-template-columns: 1fr; gap: 32px; }
  .book-card { padding: 28px; }
  .footer__wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 20px;
    gap: 14px; align-items: flex-start;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 560px) {
  .benefits, .project, .experience, .booking { padding: 70px 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__card { padding: 24px; }
  .hero__card h3 { font-size: 28px; }
  .hero__card-stats { grid-template-columns: 1fr 1fr; }
  .hero__card-stats div:last-child { grid-column: 1/-1; }
  .hero__trust { gap: 20px; }
  .hero__trust strong { font-size: 22px; }

  .field-row { grid-template-columns: 1fr; }
  .date-picker { grid-template-columns: repeat(5,1fr); }
  .step__actions { flex-direction: column; }
  .step__actions .btn { width: 100%; }
  .step__actions .btn--ghost { order: 2; }

  .footer__cols { grid-template-columns: 1fr; }
  .nav__divider, .nav__logo2 { display: none; }
  .nav .btn--gold { display: none; }
}

@media (max-width: 380px) {
  .date-picker { grid-template-columns: repeat(4,1fr); }
  .slots { grid-template-columns: 1fr; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ==============================================================
   Brand Logo Fix — Footer & Admin Sidebar
   The previous filter was making logos appear as white rectangles.
   This replaces it with a clean white "badge" treatment that works
   regardless of the logo's internal colors or background.
   ============================================================== */

/* Footer brand */
.footer__brand img {
  filter: none !important;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
  height: 40px !important;
  max-width: 180px;
  width: auto;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Admin sidebar brand */
.sidebar__brand img {
  filter: none !important;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 6px;
  height: 28px !important;
  max-width: 110px;
  width: auto;
  display: inline-block;
}
