/* ================================================================
   FUTURE MATRIX PUBLICATIONS — Style Sheet
   ================================================================ */

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --purple      : #7C3AED;
  --purple-light: #A78BFA;
  --pink        : #EC4899;
  --dark        : #0F0A2A;
  --c-heading   : #0A1F44;
  --c-paragraph : #4B5563;
  --c-small     : #64748B;
  --c-white     : #FFFFFF;
  --gray-100    : #F8F8FC;
  --gray-200    : #F0F0F8;
  --gray-300    : #E5E7EB;

  /* Gradients */
  --grad-navbar     : linear-gradient(90deg, #7C3AED 0%, #EC4899 100%);
  --grad-hero-text  : linear-gradient(180deg, #8B5CF6 0%, #F43F8D 100%);
  --grad-btn        : linear-gradient(135deg, #8B5CF6 0%, #F43F8D 100%);
  --grad-hero-bg    : linear-gradient(135deg, #F5F3FF 0%, #FAF5FF 40%, #FDF2F8 70%, #EFF6FF 100%);
  --grad-stat       : linear-gradient(135deg, #2E3DFF 0%, #8B5CF6 100%);

  /* Fonts */
  --f-jakarta: 'Plus Jakarta Sans', system-ui, sans-serif;
  --f-inter  : 'Inter', system-ui, sans-serif;

  /* Spacing & Effects */
  --radius      : 16px;
  --radius-sm   : 10px;
  --transition  : 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card : 0 2px 16px rgba(124, 58, 237, 0.07);
  --shadow-hover: 0 8px 32px rgba(124, 58, 237, 0.16);
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior:  smooth;
  height:           100%;
  max-width:        100vw;
  overflow-x:       hidden !important;
  background-color: #08051A !important;
}
body {
  font-family:      var(--f-inter);
  font-size:        16px;
  color:            var(--c-paragraph);
  background-color: #08051A !important;
  line-height:      1.68;
  overflow-x:       hidden !important;
  width:            100%;
  max-width:        100vw;
  min-height:       100vh;
  display:          flex;
  flex-direction:   column;
  margin:           0;
  padding:          0;
}
main {
  flex: 1 0 auto;
}
body.no-scroll { overflow: hidden; }

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

/* ── CONTAINER ─────────────────────────────────────────────────── */
.container {
  width:     100%;
  max-width: 1280px;
  margin:    0 auto;
  padding:   0 32px;
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position:   sticky;
  top:        0;
  z-index:    1000;
  background: var(--grad-navbar);
  box-shadow: 0 2px 20px rgba(124, 58, 237, 0.25);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
}
.nav-inner {
  display:     flex;
  align-items: center;
  height:      72px;
  gap:         20px;
}
.brand     { display: flex; align-items: center; flex-shrink: 0; }
.brand-img {
  height:     65px;
  width:      auto;
  object-fit: contain;
}

.nav-links {
  display:     flex;
  align-items: center;
  gap:         2px;
  margin-left: auto;
}
.nav-link {
  font-family:    var(--f-inter);
  font-size:      14.5px;
  font-weight:    500;
  color:          rgba(255, 255, 255, 0.88);
  padding:        8px 12px;
  display:        flex;
  align-items:    center;
  gap:            5px;
  white-space:    nowrap;
  position:       relative;
  background:     transparent;
  transition:     color 0.25s ease, text-shadow 0.25s ease;
}
.nav-link::after {
  content:       '';
  position:      absolute;
  bottom:        -2px;
  left:          50%;
  width:         0%;
  height:        2px;
  background:    #FFFFFF;
  border-radius: 2px;
  box-shadow:    none;
  transition:    width 0.25s ease, left 0.25s ease;
}
.nav-link:hover {
  color:       #FFFFFF;
  background:  transparent;
  text-shadow: none;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left:  0;
}
.nav-link.active {
  color:       #FFFFFF !important;
  font-weight: 600 !important;
  text-shadow: none;
}
.chevron { font-size: 10px; transition: transform var(--transition); }

.nav-mobile-btn { display: none; }

.nav-dropdown {
  position:    relative;
  display:     inline-flex;
  align-items: center;
}
.dropdown-menu {
  display:                 none;
  position:                absolute;
  top:                     100%;
  left:                    0;
  background:              rgba(255, 255, 255, 0.98);
  backdrop-filter:         blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius:           14px;
  box-shadow:              0 16px 40px rgba(15, 23, 42, 0.18);
  border:                  1px solid rgba(255, 255, 255, 0.8);
  min-width:               240px;
  padding:                 8px;
  z-index:                 300;
  margin-top:              4px;
}
.dropdown-menu::before {
  content:  '';
  position: absolute;
  top:      -14px;
  left:     0;
  width:    100%;
  height:   14px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  display:   block;
  animation: fadeDown 0.18s ease;
}
.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-menu a {
  display:       block;
  padding:       10px 14px;
  font-size:     13.5px;
  font-weight:   500;
  color:         var(--c-heading);
  border-radius: 8px;
  transition:    background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  color:      var(--purple);
}

.btn-book {
  font-family:     var(--f-inter);
  font-size:       13.5px;
  font-weight:     700;
  color:           var(--c-white);
  padding:         10px 22px;
  background:      var(--grad-btn);
  border:          1px solid rgba(255, 255, 255, 0.4);
  border-radius:   100px;
  white-space:     nowrap;
  flex-shrink:     0;
  margin-left:     8px;
  box-shadow:      0 4px 16px rgba(236, 72, 153, 0.35);
  transition:      transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
}
.btn-book:hover {
  transform:    translateY(-2px);
  box-shadow:   0 8px 24px rgba(236, 72, 153, 0.55);
  border-color: rgba(255, 255, 255, 0.9);
}

.hamburger {
  display:        none;
  flex-direction: column;
  justify-content: center;
  align-items:    center;
  gap:            5px;
  background:     none;
  border:         none;
  cursor:         pointer;
  padding:        8px;
  margin-left:    auto;
  z-index:        1001;
}
.hamburger span {
  display:       block;
  width:         24px;
  height:        2.5px;
  background:    var(--c-white);
  border-radius: 2px;
  transition:    transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.btn-book-header {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background: var(--grad-btn);
  color: #FFFFFF !important;
  font-family: var(--f-inter);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.4);
  white-space: nowrap;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position:   relative;
  background: var(--grad-hero-bg);
  overflow:   hidden;
  padding:    60px 0;
}
.hero-mesh {
  position:       absolute;
  width:          460px;
  opacity:        0.45;
  pointer-events: none;
}
.hero-mesh-left  { left: -80px; top: 0; transform: scaleX(-1); }
.hero-mesh-right { right: -80px; bottom: -40px; }

.hero-inner {
  display:               grid;
  grid-template-columns: 1fr 1.15fr;
  align-items:           center;
  gap:                   40px;
  position:              relative;
  z-index:               2;
}

/* Hero text */
.hero-content { padding-bottom: 0; }

.hero-title {
  font-family:    var(--f-jakarta);
  font-size:      clamp(30px, 4.5vw, 52px);
  font-weight:    800;
  line-height:    1.15;
  letter-spacing: -0.02em;
  color:          var(--c-heading);
  margin-bottom:  14px;
}
.hero-highlight {
  background:              var(--grad-hero-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}
.hero-dots-img { height: 14px; margin-bottom: 18px; }

.hero-desc {
  font-family:   var(--f-inter);
  font-size:     18px;
  font-weight:   400;
  line-height:   1.75;
  color:         var(--c-paragraph);
  max-width:     480px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  padding:       13px 28px;
  background:    var(--grad-btn);
  color:         var(--c-white);
  font-family:   var(--f-inter);
  font-size:     14px;
  font-weight:   600;
  border-radius: 100px;
  box-shadow:    0 6px 20px rgba(124,58,237,0.35);
  transition:    transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform:  translateY(-2px);
  box-shadow: 0 10px 28px rgba(124,58,237,0.45);
}

.btn-consult     { display: inline-flex; align-items: center; }
.btn-consult-img { height: 48px; width: auto; object-fit: contain; }

/* Hero visual */
.hero-visual {
  position:        relative;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.hero-main-img {
  width:      100%;
  max-width:  660px;
  object-fit: contain;
  display:    block;
  filter:     drop-shadow(0 12px 28px rgba(124,58,237,0.12));
}

/* ── HERO ENTRANCE ANIMATIONS (Staggered Left & One-shot Right) ── */
@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(75px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-line {
  display: inline-block;
  opacity: 0;
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-line-1 { animation-delay: 0.12s; }
.hero-line-2 { animation-delay: 0.32s; }
.hero-line-3 { animation-delay: 0.52s; }

.hero-dots-img {
  opacity: 0;
  animation: heroSlideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.65s;
}

.hero-desc {
  opacity: 0;
  animation: heroSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.78s;
}

.hero-visual {
  opacity: 0;
  animation: heroSlideInRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background:    var(--c-white);
  border-top:    1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding:       22px 0;
  box-shadow:    0 2px 12px rgba(0,0,0,0.04);
}
.stats-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-evenly;
  flex-wrap:       wrap;
  gap:             16px;
}
.stat-item    { display: flex; align-items: center; gap: 16px; }
.stat-icon-wrap {
  width:           52px;
  height:          52px;
  border-radius:   15px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       22px;
  flex-shrink:     0;
  transition:      transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover .stat-icon-wrap {
  transform: translateY(-3px) scale(1.08);
}
.stat-icon-wrap.sicon-purple {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:      #7C3AED;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 18px rgba(124, 58, 237, 0.18);
}
.stat-icon-wrap.sicon-blue {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #DBEAFE 100%);
  color:      #2563EB;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(37, 99, 235, 0.15), 0 6px 18px rgba(37, 99, 235, 0.18);
}
.stat-icon-wrap.sicon-pink {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF2F8 45%, #FCE7F3 100%);
  color:      #DB2777;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(219, 39, 119, 0.15), 0 6px 18px rgba(219, 39, 119, 0.18);
}
.stat-icon-wrap.sicon-cyan {
  background: linear-gradient(135deg, #FFFFFF 0%, #ECFEFF 45%, #CFFAFE 100%);
  color:      #0891B2;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(8, 145, 178, 0.15), 0 6px 18px rgba(8, 145, 178, 0.18);
}
.stat-number {
  font-family:             var(--f-jakarta);
  font-size:               32px;
  font-weight:             800;
  line-height:             1;
  background:              var(--grad-stat);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}
.stat-desc {
  font-family: var(--f-inter);
  font-size:   12px;
  font-weight: 500;
  color:       var(--c-small);
  margin-top:  3px;
}
.stat-divider { width: 1px; height: 48px; background: var(--gray-300); }

/* ================================================================
   WHO WE ARE SECTION
   ================================================================ */
.about-section {
  padding:    64px 0 36px;
  background: var(--c-white);
}
.about-header {
  margin-bottom: 32px;
}
.section-tag {
  display:        inline-flex;
  align-items:    center;
  gap:            6px;
  font-family:    var(--f-jakarta);
  font-size:      12px;
  font-weight:    800;
  color:          var(--purple);
  background:     rgba(124, 58, 237, 0.08);
  padding:        5px 14px;
  border-radius:  100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom:  10px;
}
.about-title-wrap {
  display:     flex;
  align-items: center;
  gap:         16px;
}

.about-creative-grid {
  display:               grid;
  grid-template-columns: 1.25fr 1fr;
  gap:                   28px;
  align-items:           stretch;
}

.about-card {
  border-radius: 20px;
  padding:       32px;
  box-shadow:    var(--shadow-card);
  border:        1px solid var(--gray-200);
  transition:    transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform:  translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.lead-card {
  background: linear-gradient(135deg, #FAF5FF 0%, #F5F3FF 50%, #EFF6FF 100%);
  border:     1px solid rgba(124, 58, 237, 0.15);
  display:    flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-badge {
  display:       inline-flex;
  align-items:   center;
  gap:           8px;
  font-family:   var(--f-inter);
  font-size:     12.5px;
  font-weight:   700;
  color:         var(--purple);
  background:    var(--c-white);
  padding:       6px 16px;
  border-radius: 100px;
  box-shadow:    0 2px 10px rgba(124, 58, 237, 0.1);
  margin-bottom: 20px;
  align-self:    flex-start;
}
.about-lead-text {
  font-family: var(--f-inter);
  font-size:   16.5px;
  line-height: 1.75;
  color:       var(--c-heading);
  margin-bottom: 16px;
}
.about-lead-text strong {
  font-weight: 700;
  color:       var(--purple);
}
.about-sub-text {
  font-family: var(--f-inter);
  font-size:   15px;
  line-height: 1.7;
  color:       var(--c-paragraph);
  margin-bottom: 24px;
}
.about-tags-row {
  display:   flex;
  flex-wrap: wrap;
  gap:       10px;
}
.about-pill {
  display:       inline-flex;
  align-items:   center;
  gap:           6px;
  font-family:   var(--f-inter);
  font-size:     13px;
  font-weight:   600;
  color:         var(--c-heading);
  background:    var(--c-white);
  padding:       6px 14px;
  border-radius: 100px;
  border:        1px solid var(--gray-200);
}
.about-pill i { color: #10B981; }

.focus-card {
  background:     var(--c-white);
  border:         1px solid var(--gray-200);
  display:        flex;
  flex-direction: column;
  justify-content: space-between;
}
.focus-title {
  font-family:    var(--f-jakarta);
  font-size:      20px;
  font-weight:    800;
  color:          var(--c-heading);
  margin-bottom:  10px;
}
.focus-desc {
  font-family:   var(--f-inter);
  font-size:     15px;
  line-height:   1.65;
  color:         var(--c-paragraph);
  margin-bottom: 24px;
}
.focus-points-list {
  display:        flex;
  flex-direction: column;
  gap:            12px;
}
.focus-point-item {
  display:       flex;
  align-items:   center;
  gap:           14px;
  background:    var(--gray-100);
  padding:       14px 16px;
  border-radius: 14px;
  border:        1px solid var(--gray-200);
  transition:    border-color var(--transition), background var(--transition);
}
.focus-point-item:hover {
  border-color: rgba(124, 58, 237, 0.25);
  background:   #FAF5FF;
}
.fpoint-icon {
  width:           40px;
  height:          40px;
  border-radius:   10px;
  background:      var(--c-white);
  color:           var(--purple);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       17px;
  box-shadow:      0 2px 8px rgba(124, 58, 237, 0.1);
  flex-shrink:     0;
}
.fpoint-text strong {
  display:     block;
  font-family: var(--f-jakarta);
  font-size:   14px;
  font-weight: 700;
  color:       var(--c-heading);
  margin-bottom: 2px;
}
.fpoint-text span {
  font-family: var(--f-inter);
  font-size:   12px;
  color:       var(--c-small);
}

/* ================================================================
   CORE SERVICES
   ================================================================ */
.services-section {
  padding:    60px 0;
  background: var(--c-white);
}
.section-title {
  font-family:    var(--f-jakarta);
  font-size:      clamp(26px, 3.5vw, 36px);
  font-weight:    800;
  letter-spacing: -0.01em;
  color:          var(--c-heading);
  text-align:     left;
  margin-bottom:  0;
}
.services-header,
.process-header {
  display:         flex;
  align-items:     center;
  gap:             16px;
  margin-bottom:   36px;
}
.section-dots-img { height: 14px; display: inline-block; }

.services-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   24px;
}
.service-card {
  background:    var(--c-white);
  border-radius: 16px;
  padding:       28px 24px;
  box-shadow:    var(--shadow-card);
  border:        1px solid var(--gray-200);
  display:       flex;
  flex-direction: column;
  gap:           12px;
  transition:    transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform:    translateY(-5px);
  box-shadow:   var(--shadow-hover);
  border-color: rgba(124,58,237,0.18);
}
.svc-icon-wrap {
  width:           54px;
  height:          54px;
  border-radius:   14px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       24px;
  transition:      transform var(--transition), box-shadow var(--transition);
}
.service-card:hover .svc-icon-wrap {
  transform: scale(1.08);
}

/* Service Icon Color Themes */
.svc-icon-wrap.icon-purple {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:      #7C3AED;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 18px rgba(124, 58, 237, 0.18);
}
.svc-icon-wrap.icon-blue {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #DBEAFE 100%);
  color:      #2563EB;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(37, 99, 235, 0.15), 0 6px 18px rgba(37, 99, 235, 0.18);
}
.svc-icon-wrap.icon-pink {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF2F8 45%, #FCE7F3 100%);
  color:      #DB2777;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(219, 39, 119, 0.15), 0 6px 18px rgba(219, 39, 119, 0.18);
}
.svc-icon-wrap.icon-indigo {
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 45%, #E0E7FF 100%);
  color:      #4F46E5;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(79, 70, 229, 0.15), 0 6px 18px rgba(79, 70, 229, 0.18);
}
.svc-icon-wrap.icon-rose {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F2 45%, #FFE4E6 100%);
  color:      #E11D48;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(225, 29, 72, 0.15), 0 6px 18px rgba(225, 29, 72, 0.18);
}
.svc-icon-wrap.icon-cyan {
  background: linear-gradient(135deg, #FFFFFF 0%, #ECFEFF 45%, #CFFAFE 100%);
  color:      #0891B2;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(8, 145, 178, 0.15), 0 6px 18px rgba(8, 145, 178, 0.18);
}

.service-card h3 {
  font-family:    var(--f-jakarta);
  font-size:      18px;
  font-weight:    700;
  color:          var(--c-heading);
  line-height:    1.35;
}
.service-card p {
  font-family: var(--f-inter);
  font-size:   14.5px;
  font-weight: 400;
  color:       var(--c-paragraph);
  line-height: 1.65;
  flex:        1;
}
.learn-more {
  font-family: var(--f-inter);
  font-size:   13.5px;
  font-weight: 600;
  color:       var(--purple);
  display:     inline-flex;
  align-items: center;
  gap:         4px;
  transition:  gap var(--transition), color var(--transition);
}
.learn-more:hover { gap: 8px; color: var(--pink); }

/* ================================================================
   PUBLISHING PROCESS — Full Width Section
   ================================================================ */
.process-section {
  padding:    52px 0;
  background: var(--c-white);
  border-top: 1px solid var(--gray-300);
}
.process-header {
  display:         flex;
  align-items:     center;
  gap:             16px;
  margin-bottom:   36px;
}
.process-steps-row {
  display:         flex;
  align-items:     flex-start;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             16px;
  max-width:       100%;
}
.process-step-item {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  flex:           1;
  min-width:      0;
  padding:        0 8px;
}
.process-step-icon {
  width:           68px;
  height:          68px;
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   12px;
  font-size:       26px;
  box-shadow:      0 4px 16px rgba(0,0,0,0.06);
  transition:      transform var(--transition), box-shadow var(--transition);
}
.process-step-item:hover .process-step-icon {
  transform:  translateY(-4px) scale(1.06);
  box-shadow: 0 10px 24px rgba(124,58,237,0.2);
}

/* Process Step Icon Colors */
.process-step-icon.picon-1 {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:      #7C3AED;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 18px rgba(124, 58, 237, 0.18);
}
.process-step-icon.picon-2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #DBEAFE 100%);
  color:      #2563EB;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(37, 99, 235, 0.15), 0 6px 18px rgba(37, 99, 235, 0.18);
}
.process-step-icon.picon-3 {
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 45%, #E0E7FF 100%);
  color:      #4F46E5;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(79, 70, 229, 0.15), 0 6px 18px rgba(79, 70, 229, 0.18);
}
.process-step-icon.picon-4 {
  background: linear-gradient(135deg, #FFFFFF 0%, #ECFDF5 45%, #D1FAE5 100%);
  color:      #059669;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(5, 150, 105, 0.15), 0 6px 18px rgba(5, 150, 105, 0.18);
}
.process-step-icon.picon-5 {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F2 45%, #FFE4E6 100%);
  color:      #E11D48;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(225, 29, 72, 0.15), 0 6px 18px rgba(225, 29, 72, 0.18);
}
.process-step-icon.picon-6 {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFBEB 45%, #FEF3C7 100%);
  color:      #D97706;
  border:     1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(217, 119, 6, 0.15), 0 6px 18px rgba(217, 119, 6, 0.18);
}

.proc-num {
  font-family:    var(--f-jakarta);
  font-size:      13px;
  font-weight:    800;
  color:          var(--purple);
  margin-bottom:  4px;
  letter-spacing: 0.5px;
}
.proc-label {
  font-size:   13px;
  color:       var(--c-paragraph);
  line-height: 1.45;
}
.proc-label strong {
  display:       block;
  font-family:   var(--f-jakarta);
  font-weight:   700;
  font-size:     15px;
  color:         var(--c-heading);
  margin-bottom: 3px;
}
.proc-label span {
  font-family: var(--f-inter);
  color:       var(--c-small);
  font-size:   13px;
  line-height: 1.4;
}

/* Connector arrow between steps */
.proc-connector {
  display:     flex;
  align-items: center;
  padding-top: 26px;
  flex-shrink: 0;
}

/* ================================================================
   OUR COMMITMENT TO SCHOLARLY PUBLISHING — Full Width Section
   ================================================================ */
.commitment-section {
  padding:    60px 0;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.commitment-header {
  display:       flex;
  align-items:   center;
  gap:           16px;
  margin-bottom: 36px;
}
.commitment-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:                   18px;
  max-width:             100%;
}
.commitment-card {
  background:    var(--c-white);
  border-radius: 18px;
  padding:       28px 20px;
  box-shadow:    var(--shadow-card);
  border:        1px solid var(--gray-200);
  display:       flex;
  flex-direction: column;
  gap:           12px;
  transition:    transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.commitment-card:hover {
  transform:    translateY(-5px);
  box-shadow:   var(--shadow-hover);
  border-color: rgba(124,58,237,0.18);
}
.comm-icon-wrap {
  width:           52px;
  height:          52px;
  border-radius:   14px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       22px;
  transition:      transform var(--transition);
}
.commitment-card:hover .comm-icon-wrap {
  transform: scale(1.08);
}

/* Icon Color Variations */
.comm-icon-wrap.cicon-1 {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:      #7C3AED;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 18px rgba(124, 58, 237, 0.18);
}
.comm-icon-wrap.cicon-2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #DBEAFE 100%);
  color:      #2563EB;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(37, 99, 235, 0.15), 0 6px 18px rgba(37, 99, 235, 0.18);
}
.comm-icon-wrap.cicon-3 {
  background: linear-gradient(135deg, #FFFFFF 0%, #ECFDF5 45%, #D1FAE5 100%);
  color:      #059669;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(5, 150, 105, 0.15), 0 6px 18px rgba(5, 150, 105, 0.18);
}
.comm-icon-wrap.cicon-4 {
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 45%, #E0E7FF 100%);
  color:      #4F46E5;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(79, 70, 229, 0.15), 0 6px 18px rgba(79, 70, 229, 0.18);
}
.comm-icon-wrap.cicon-5 {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF1F2 45%, #FFE4E6 100%);
  color:      #E11D48;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(225, 29, 72, 0.15), 0 6px 18px rgba(225, 29, 72, 0.18);
}

.commitment-card h3 {
  font-family:    var(--f-jakarta);
  font-size:      17px;
  font-weight:    700;
  color:          var(--c-heading);
  line-height:    1.35;
}
.commitment-card p {
  font-family: var(--f-inter);
  font-size:   13.5px;
  font-weight: 400;
  color:       var(--c-paragraph);
  line-height: 1.65;
  flex:        1;
}

/* ================================================================
   FOOTER
   ================================================================ */
#footer-placeholder {
  background:  #08051A !important;
  display:     block;
  width:       100%;
  max-width:   100vw;
  flex-shrink: 0;
  margin-top:  auto;
  overflow:    hidden;
}
.footer {
  background:  #0F0A2A !important;
  padding-top: 52px;
  margin:      0;
  width:       100%;
  overflow:    hidden;
}
.footer-bottom {
  background: #08051A !important;
  padding:    18px 0;
  margin:     0;
  width:       100%;
  overflow:    hidden;
}
.footer-inner {
  display:               grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.1fr 1.8fr;
  gap:                   36px;
  padding-bottom:        44px;
  border-bottom:         1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  text-align:     left;
}
.footer-logo-link {
  display:       block;
  margin-bottom: 14px;
  margin-left:   0;
  padding-left:  0;
}
.footer-logo-img {
  height:      55px;
  width:       auto;
  object-fit:  contain;
  display:     block;
  margin-left: 0;
}
.footer-tagline {
  font-family:   var(--f-inter);
  font-size:     13px;
  color:         rgba(255,255,255,0.6);
  line-height:   1.75;
  margin-left:   0;
  margin-bottom: 20px;
  max-width:     280px;
}
.social-links { display: flex; gap: 8px; margin-left: 0; }
.social-link {
  width:         34px;
  height:        34px;
  border-radius: 50%;
  border:        1px solid rgba(255,255,255,0.15);
  color:         rgba(255,255,255,0.55);
  display:       flex;
  align-items:   center;
  justify-content: center;
  transition:    background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover {
  background:   var(--grad-btn);
  border-color: transparent;
  color:        var(--c-white);
  transform:    translateY(-2px);
}

.footer-col h4 {
  font-family:    var(--f-inter);
  font-size:      13px;
  font-weight:    700;
  color:          var(--c-white);
  margin-bottom:  14px;
  position:       relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-col h4::after {
  content:       '';
  position:      absolute;
  bottom:        0;
  left:          0;
  width:         24px;
  height:        2px;
  background:    var(--grad-hero-text);
  border-radius: 2px;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-family: var(--f-inter);
  font-size:   13px;
  font-weight: 400;
  color:       rgba(255,255,255,0.5);
  display:     inline-block;
  transition:  color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

.contact-list { gap: 13px !important; }
.contact-list li {
  display:     flex;
  gap:         10px;
  align-items: flex-start;
  font-family: var(--f-inter);
  font-size:   12px;
  color:       rgba(255,255,255,0.5);
  line-height: 1.65;
}
.contact-icon { font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.contact-list li a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.contact-list li a:hover { color: rgba(255,255,255,0.9); padding-left: 0; }

.newsletter-col p {
  font-family:   var(--f-inter);
  font-size:     12px;
  color:         rgba(255,255,255,0.5);
  margin-bottom: 14px;
  line-height:   1.7;
}
.newsletter-form  { display: flex; gap: 8px; }
.newsletter-input {
  flex:          1;
  padding:       10px 14px;
  border-radius: 8px;
  border:        1px solid rgba(255,255,255,0.12);
  background:    rgba(255,255,255,0.07);
  color:         var(--c-white);
  font-family:   var(--f-inter);
  font-size:     13px;
  outline:       none;
  transition:    border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus         { border-color: var(--purple-light); }
.newsletter-btn {
  padding:      10px 16px;
  background:   var(--grad-btn);
  color:        var(--c-white);
  border:       none;
  border-radius: 8px;
  font-family:  var(--f-inter);
  font-size:    13px;
  font-weight:  600;
  cursor:       pointer;
  white-space:  nowrap;
  transition:   transform var(--transition), box-shadow var(--transition);
}
.newsletter-btn:hover {
  transform:  translateY(-1px);
  box-shadow: 0 4px 16px rgba(236,72,153,0.4);
}


.footer-bottom-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             10px;
}
.footer-bottom-inner > span { font-family: var(--f-inter); font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a {
  font-family: var(--f-inter);
  font-size:   12px;
  color:       rgba(255,255,255,0.35);
  transition:  color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }
.sep { color: rgba(255,255,255,0.2); }

/* ================================================================
   ANIMATIONS (Silky Scroll Reveal Transitions)
   ================================================================ */
.reveal {
  opacity:    0;
  transform:  translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity:    0;
  transform:  translateX(-50px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity:    0;
  transform:  translateX(50px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up {
  opacity:    0;
  transform:  translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity:   1 !important;
  transform: translate(0, 0) !important;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ================================================================
   COMPREHENSIVE MOBILE & RESPONSIVE BREAKPOINTS
   ================================================================ */

/* --- 1200px Breakpoint (Laptops & Small Desktop) --- */
@media (max-width: 1200px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .commitment-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps-row { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .proc-connector { display: none; }
}

/* --- 900px Breakpoint (Tablets & iPad Portrait) --- */
@media (max-width: 900px) {
  .container { padding: 0 16px; }

  .brand-img {
    height: 48px !important;
    max-width: 170px;
  }

  .nav-mobile-right {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
  }

  .btn-book-header {
    display: inline-flex !important;
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 100px;
    flex-shrink: 0;
  }

  .hamburger {
    display: flex !important;
    flex-shrink: 0;
    margin-left: 0;
    padding: 6px;
  }

@media (max-width: 580px) {
  .brand-img {
    height: 42px !important;
    max-width: 145px;
  }
  .btn-book-header {
    padding: 6px 10px;
    font-size: 11.5px;
  }
  .hamburger {
    padding: 4px;
  }
}

@media (max-width: 380px) {
  .brand-img {
    height: 38px !important;
    max-width: 125px;
  }
  .btn-book-header {
    padding: 5px 8px;
    font-size: 11px;
  }
}

  .btn-book {
    margin-left: 0;
    margin-top:  14px;
    width:       100%;
    text-align:  center;
    padding:     14px 20px;
    font-size:   15px;
    display:     inline-flex;
    justify-content: center;
  }

  .nav-links {
    display:        none;
    flex-direction: column;
    position:       fixed;
    top:            72px;
    left:           0;
    width:          100%;
    height:         calc(100vh - 72px);
    background:     linear-gradient(180deg, #1E1035 0%, #0F0A2A 100%);
    padding:        24px 20px 40px;
    overflow-y:     auto;
    gap:            8px;
    z-index:        999;
    box-shadow:     0 12px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open {
    display:        flex !important;
    visibility:     visible !important;
    opacity:        1 !important;
    animation:      slideDownNav 0.3s ease forwards;
  }

  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-link {
    width:          100%;
    font-size:      16px;
    padding:        12px 18px;
    border-radius:  8px;
    justify-content: space-between;
  }
  .nav-link.active::after { display: none; }
  .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid #FFFFFF;
    border-radius: 0 8px 8px 0;
  }

  /* Mobile Dropdown Menu */
  .nav-dropdown {
    width:          100%;
    flex-direction: column;
    align-items:    stretch;
  }
  .nav-dropdown .dropdown-menu {
    position:        static;
    width:           100%;
    background:      rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border:          none;
    box-shadow:      none;
    padding:         6px 0 6px 14px;
    margin-top:      6px;
    border-radius:   10px;
  }
  .nav-dropdown .dropdown-menu a {
    color:         #FFFFFF;
    font-size:     14.5px;
    padding:       10px 14px;
    opacity:       0.92;
  }
  .nav-dropdown .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color:      #FFFFFF;
    opacity:    1;
  }
  .nav-mobile-btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    width:           100%;
    margin-top:      16px;
    padding:         14px 24px;
    background:      var(--grad-btn);
    color:           var(--c-white);
    font-size:       15px;
    font-weight:     700;
    border-radius:   100px;
    text-align:      center;
    box-shadow:      0 6px 20px rgba(0,0,0,0.2);
  }

  .nav-dropdown { width: 100%; }
  .nav-dropdown .dropdown-menu {
    position:      static;
    box-shadow:    none;
    background:    rgba(255,255,255,0.08);
    border:        none;
    border-radius: 8px;
    margin-top:    4px;
    padding:       4px;
    min-width:     0;
  }
  .nav-dropdown.active .dropdown-menu { display: block; }
  .dropdown-menu a {
    color:       rgba(255,255,255,0.85);
    padding:     10px 16px;
    font-size:   14px;
  }
  .dropdown-menu a:hover {
    background: rgba(255,255,255,0.15);
    color:      var(--c-white);
  }

  /* Hero Section Mobile Fix: KEEP VISUAL VISIBLE! */
  .hero { padding: 36px 0 24px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align:            center;
    gap:                   32px;
  }
  .hero-content { padding-bottom: 0; }
  .hero-title   { font-size: clamp(28px, 6vw, 40px); }
  .hero-dots-img { margin: 0 auto 16px; }
  .hero-desc    { margin-left: auto; margin-right: auto; font-size: 15px; }
  .hero-actions { justify-content: center; width: 100%; }

  .hero-visual {
    display:        flex;
    justify-content: center;
    width:          100%;
    max-width:      500px;
    margin:         12px auto 0;
  }
  .hero-main-img {
    width:      100%;
    max-width:  480px;
    margin:     0 auto;
  }

  /* Sections Spacing */
  .about-creative-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-journals-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner       { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* --- 768px Breakpoint (Mobile Portrait) --- */
@media (max-width: 768px) {
  /* Stats Bar 2x2 Grid */
  .stats-bar { padding: 18px 0; }
  .stats-inner {
    display:               grid;
    grid-template-columns: repeat(2, 1fr);
    gap:                   16px 12px;
  }
  .stat-item {
    justify-content: center;
    gap:             12px;
  }
  .stat-icon-wrap { width: 44px; height: 44px; border-radius: 10px; }
  .stat-icon-img  { width: 24px; height: 24px; }
  .stat-number    { font-size: 26px; }
  .stat-divider   { display: none; }

  /* Services Grid 2 Columns */
  .services-section { padding: 44px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card  { padding: 18px 14px; }

  /* Publishing Process Step Grid on Mobile */
  .process-section { padding: 40px 0; }
  .services-header,
  .process-header  { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 24px; }
  .services-header .section-title,
  .process-header .section-title { text-align: left; }

  .process-steps-row {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   12px;
  }
  .process-step-item {
    background:    var(--gray-100);
    border-radius: 14px;
    padding:       18px 12px;
    border:        1px solid var(--gray-200);
    box-shadow:    0 2px 8px rgba(0,0,0,0.03);
  }
  .process-step-icon { width: 58px; height: 58px; font-size: 22px; margin-bottom: 10px; }
  .proc-num { font-size: 12px; }
  .proc-label strong { font-size: 13.5px; }
  .proc-label span { font-size: 12px; }


  /* Commitment Grid Mobile */
  .commitment-section { padding: 44px 0; }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .commitment-card { padding: 22px 16px; }
}

/* --- 580px Breakpoint (Small Mobile Phones) --- */
@media (max-width: 580px) {
  .container { padding: 0 16px; }
  .commitment-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Hero Section Adjustments */
  .hero-title { font-size: 26px; line-height: 1.25; }
  .hero-desc  { font-size: 14px; line-height: 1.6; margin-bottom: 24px; }

  .hero-actions {
    flex-direction: column;
    width:          100%;
    gap:            12px;
  }
  .btn-primary {
    width:           100%;
    justify-content: center;
    padding:         14px 20px;
    font-size:       14px;
  }
  .btn-consult     { width: 100%; justify-content: center; }
  .btn-consult-img { height: 46px; width: 100%; object-fit: contain; }

  /* Core Services 1 Column */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 18px 16px; }

  /* Process Steps 2 Columns Grid */
  .process-steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap:                   10px;
  }

  /* Journal Carousel 1 Slide View */
  .journals-top-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .journal-card     { flex: 0 0 100%; }
  .journal-cover-img { height: 160px; }

  /* Footer Layout 1 Column */
  .footer { padding-top: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline { max-width: 100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn  { width: 100%; padding: 12px; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align:     center;
    gap:            10px;
  }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* --- Touch device improvements --- */
@media (hover: none) and (pointer: coarse) {
  .btn-primary, .btn-book, .nav-link, .learn-more, .carousel-btn {
    min-height: 44px;
  }
}

/* ================================================================
   ABOUT PAGE STYLES (about.html - Reference Mockup Match)
   ================================================================ */
.about-design-wrapper {
  background:     #F8FAFC;
  padding:        56px 0 80px;
  min-height:     70vh;
}
.container-narrow {
  max-width:    920px;
  margin:       0 auto;
  padding:      0 24px;
}

.about-design-header {
  margin-bottom: 28px;
}
.about-pill-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            6px;
  font-family:    var(--f-jakarta);
  font-size:      11px;
  font-weight:    800;
  color:          #7C3AED;
  background:     rgba(124, 58, 237, 0.08);
  padding:        5px 14px;
  border-radius:  100px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom:  12px;
}
.about-main-title {
  font-family:    var(--f-jakarta);
  font-size:      clamp(34px, 4vw, 44px);
  font-weight:    800;
  color:          #0F172A;
  line-height:    1.2;
  margin-bottom:  8px;
}

/* Accent Line & Dots */
.accent-line-dot {
  display:       flex;
  align-items:   center;
  gap:           4px;
  margin-bottom: 24px;
}
.accent-line {
  width:         32px;
  height:        3px;
  background:    #7C3AED;
  border-radius: 2px;
}
.accent-dot {
  width:         4px;
  height:        4px;
  border-radius: 50%;
}
.accent-dot.purple-dot { background: #7C3AED; }
.accent-dot.pink-dot   { background: #EC4899; }

.about-intro-p {
  font-family:   var(--f-inter);
  font-size:     15.5px;
  line-height:   1.72;
  color:         #475569;
  margin-bottom: 16px;
}

/* Section Separator Line */
.section-separator {
  height:     1px;
  background: #E2E8F0;
  margin:     36px 0;
}

/* Content Blocks (Vision, Mission, Values) */
.about-block {
  margin-bottom: 8px;
}
.block-title-row {
  display:     flex;
  align-items: center;
  gap:         12px;
  margin-bottom: 14px;
}
.bar-accent {
  width:         24px;
  height:        4px;
  background:    #7C3AED;
  border-radius: 2px;
  display:       inline-block;
}
.block-title-row h2 {
  font-family:    var(--f-jakarta);
  font-size:      23px;
  font-weight:    800;
  color:          #0F172A;
  letter-spacing: -0.01em;
}
.block-text {
  font-family: var(--f-inter);
  font-size:   15px;
  line-height: 1.72;
  color:       #475569;
}

/* Values List (Row by Row with icons) */
.values-list-rows {
  display:        flex;
  flex-direction: column;
  gap:            0;
  margin-top:     12px;
}
.val-item {
  display:       flex;
  align-items:   flex-start;
  gap:           16px;
  padding:       18px 0;
  border-bottom: 1px solid #F1F5F9;
}
.val-item:last-child {
  border-bottom: none;
}
.val-icon-wrap {
  width:           42px;
  height:          42px;
  border-radius:   50%;
  background:      linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:           #7C3AED;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       17px;
  flex-shrink:     0;
  margin-top:      2px;
  border:          1px solid rgba(255, 255, 255, 0.95);
  box-shadow:      inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 16px rgba(124, 58, 237, 0.16);
}
.val-content h3 {
  font-family:  var(--f-jakarta);
  font-size:    16px;
  font-weight:  700;
  color:        #0F172A;
  margin-bottom: 3px;
}
.val-content p {
  font-family: var(--f-inter);
  font-size:   14.5px;
  line-height: 1.6;
  color:       #475569;
}

/* Floating Bottom Stats Card */
.about-stats-card {
  background:    #FFFFFF;
  border-radius: 20px;
  box-shadow:    0 10px 36px rgba(15, 23, 42, 0.05);
  border:        1px solid #E2E8F0;
  padding:       32px 28px;
  margin-top:    48px;
  display:       grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items:   center;
  gap:           16px;
}
.astat-col {
  display:        flex;
  flex-direction: column;
  gap:            8px;
}
.astat-icon-wrap {
  width:           46px;
  height:          46px;
  border-radius:   13px;
  background:      linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:           #7C3AED;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       20px;
  margin-bottom:   4px;
  border:          1px solid rgba(255, 255, 255, 0.95);
  box-shadow:      inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 16px rgba(124, 58, 237, 0.16);
}
.astat-number {
  font-family: var(--f-jakarta);
  font-size:   26px;
  font-weight: 800;
  color:       #0F172A;
  line-height: 1;
  display:     block;
  margin-bottom: 2px;
}
.astat-title {
  font-family: var(--f-jakarta);
  font-size:   13.5px;
  font-weight: 700;
  color:       #0F172A;
  display:     block;
}
.astat-desc {
  font-family: var(--f-inter);
  font-size:   12px;
  line-height: 1.45;
  color:       #64748B;
}
.astat-divider {
  width:      1px;
  height:     64px;
  background: #E2E8F0;
}

/* Responsive Rules for About Mockup */
@media (max-width: 900px) {
  .about-stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap:                   24px;
    padding:               24px 20px;
  }
  .astat-divider { display: none; }
}
@media (max-width: 580px) {
  .about-stats-card { grid-template-columns: 1fr; gap: 20px; }
  .container-narrow  { padding: 0 16px; }
  .about-design-wrapper { padding: 36px 0 60px; }
}

/* ================================================================
   CONTACT PAGE STYLES (contact.html - About-Us Aesthetic)
   ================================================================ */
.contact-main-grid {
  display:               grid;
  grid-template-columns: 1fr 1.35fr;
  gap:                   36px;
  align-items:           start;
  margin-top:            12px;
}

/* Left Column Info Cards */
.contact-info-col {
  display:        flex;
  flex-direction: column;
  gap:            16px;
}
.cinfo-card {
  background:    #FFFFFF;
  border-radius: 16px;
  padding:       22px 20px;
  box-shadow:    0 6px 20px rgba(15, 23, 42, 0.04);
  border:        1px solid #E2E8F0;
  display:       flex;
  align-items:   flex-start;
  gap:           16px;
  transition:    transform 0.25s ease, box-shadow 0.25s ease;
}
.cinfo-card:hover {
  transform:  translateY(-3px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.cinfo-icon-wrap {
  width:           44px;
  height:          44px;
  border-radius:   13px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       19px;
  flex-shrink:     0;
}
.cinfo-icon-wrap.cicon-purple {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5E8FF 45%, #E9D5FF 100%);
  color:      #7C3AED;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(124, 58, 237, 0.15), 0 6px 16px rgba(124, 58, 237, 0.15);
}
.cinfo-icon-wrap.cicon-blue {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 45%, #DBEAFE 100%);
  color:      #2563EB;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(37, 99, 235, 0.15), 0 6px 16px rgba(37, 99, 235, 0.15);
}
.cinfo-icon-wrap.cicon-pink {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF2F8 45%, #FCE7F3 100%);
  color:      #DB2777;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(219, 39, 119, 0.15), 0 6px 16px rgba(219, 39, 119, 0.15);
}
.cinfo-icon-wrap.cicon-cyan {
  background: linear-gradient(135deg, #FFFFFF 0%, #ECFEFF 45%, #CFFAFE 100%);
  color:      #0891B2;
  border:     1px solid rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 2px #FFFFFF, inset 0 -3px 8px rgba(8, 145, 178, 0.15), 0 6px 16px rgba(8, 145, 178, 0.15);
}

.cinfo-text h3 {
  font-family:  var(--f-jakarta);
  font-size:    16px;
  font-weight:  700;
  color:        #0F172A;
  margin-bottom: 4px;
}
.cinfo-text p {
  font-family: var(--f-inter);
  font-size:   13.5px;
  line-height: 1.6;
  color:       #475569;
}
.cinfo-text a {
  color:      #7C3AED;
  font-weight: 500;
  transition: color 0.2s ease;
}
.cinfo-text a:hover { color: #DB2777; }

/* Right Column Contact Form Card */
.contact-form-card {
  background:    #FFFFFF;
  border-radius: 20px;
  padding:       36px 32px;
  box-shadow:    0 10px 36px rgba(15, 23, 42, 0.05);
  border:        1px solid #E2E8F0;
}
.form-title {
  font-family:    var(--f-jakarta);
  font-size:      22px;
  font-weight:    800;
  color:          #0F172A;
  margin-bottom:  6px;
}
.form-desc {
  font-family:   var(--f-inter);
  font-size:     14px;
  color:         #64748B;
  margin-bottom: 24px;
}

.contact-form {
  display:        flex;
  flex-direction: column;
  gap:            18px;
}
.form-group {
  display:        flex;
  flex-direction: column;
  gap:            6px;
}
.form-group label {
  font-family: var(--f-jakarta);
  font-size:   13.5px;
  font-weight: 700;
  color:       #0F172A;
}
.form-group label span {
  color: #E11D48;
}

.form-input,
.form-select,
.form-textarea {
  width:         100%;
  font-family:   var(--f-inter);
  font-size:     14px;
  color:         #0F172A;
  background:    #F8FAFC;
  border:        1px solid #E2E8F0;
  border-radius: 10px;
  padding:       12px 16px;
  outline:       none;
  transition:    border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #94A3B8;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background:   #FFFFFF;
  border-color: #7C3AED;
  box-shadow:   0 0 0 3px rgba(124, 58, 237, 0.12);
}

.contact-submit-btn {
  display:         inline-flex;
  align-items:     center;
  justify-content: center;
  gap:             10px;
  background:      linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
  color:           #FFFFFF;
  font-family:     var(--f-jakarta);
  font-size:       15px;
  font-weight:     700;
  padding:         14px 32px;
  border-radius:   100px;
  border:          none;
  cursor:          pointer;
  align-self:      flex-start;
  box-shadow:      0 6px 20px rgba(124, 58, 237, 0.25);
  transition:      transform 0.25s ease, box-shadow 0.25s ease;
  margin-top:      6px;
}
.contact-submit-btn:hover {
  transform:  translateY(-2px);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.35);
}

/* Responsive Rules for Contact Grid */
@media (max-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap:                   28px;
  }
  .contact-form-card {
    padding: 28px 22px;
  }
}

/* ================================================================
   MASTER SERVICES OVERVIEW GRID (services.html)
   ================================================================ */
.services-master-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   24px;
  margin-top:            12px;
}
.smaster-card {
  background:    #FFFFFF;
  border-radius: 18px;
  padding:       28px 24px;
  box-shadow:    0 6px 24px rgba(15, 23, 42, 0.04);
  border:        1px solid #E2E8F0;
  display:       flex;
  gap:           20px;
  align-items:   flex-start;
  transition:    transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.smaster-card:hover {
  transform:    translateY(-4px);
  box-shadow:   0 12px 32px rgba(15, 23, 42, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
}
.smaster-content h2 {
  font-family:   var(--f-jakarta);
  font-size:     18px;
  font-weight:   700;
  color:         #0F172A;
  margin-bottom: 6px;
}
.smaster-content p {
  font-family:   var(--f-inter);
  font-size:     14px;
  line-height:   1.6;
  color:         #475569;
  margin-bottom: 14px;
}
/* ================================================================
   FAQ ACCORDION STYLES (resources-faq.html)
   ================================================================ */
.faq-accordion-container {
  display:        flex;
  flex-direction: column;
  gap:            14px;
  margin-top:     16px;
}
.faq-item {
  background:    #FFFFFF;
  border-radius: 16px;
  border:        1px solid #E2E8F0;
  box-shadow:    0 4px 16px rgba(15, 23, 42, 0.03);
  overflow:      hidden;
  transition:    border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.25);
}
.faq-question {
  padding:         20px 24px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  cursor:          pointer;
  user-select:     none;
  background:      #FFFFFF;
  transition:      background 0.2s ease;
}
.faq-question:hover {
  background: #F8FAFC;
}
.faq-question h3 {
  font-family: var(--f-jakarta);
  font-size:   16.5px;
  font-weight: 700;
  color:       #0F172A;
  margin:      0;
}
.faq-toggle {
  width:           36px;
  height:          36px;
  border-radius:   50%;
  background:      #F1F5F9;
  color:           #7C3AED;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       14px;
  flex-shrink:     0;
  transition:      transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-toggle {
  transform:  rotate(180deg);
  background: #F3E8FF;
}
.faq-answer {
  max-height:  0;
  overflow:    hidden;
  transition:  max-height 0.35s ease, padding 0.35s ease;
  background:  #FAF5FF;
  border-top:  1px solid transparent;
}
.faq-item.open .faq-answer {
  max-height: 250px;
  padding:    18px 24px;
  border-top: 1px solid #F3E8FF;
}
.faq-answer p {
  font-family: var(--f-inter);
  font-size:   14.5px;
  line-height: 1.65;
  color:       #475569;
  margin:      0;
}
.faq-answer a {
  color:       #7C3AED;
  font-weight: 600;
}

/* ================================================================
   ADDITIONAL MOBILE & TABLET RESPONSIVE POLISH
   ================================================================ */
@media (max-width: 900px) {
  .about-stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 24px 20px;
  }
  .astat-divider {
    display: none;
  }
  .services-master-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .smaster-card {
    padding: 22px 18px;
  }
}

@media (max-width: 600px) {
  .about-design-wrapper {
    padding: 32px 0 48px;
  }
  .container-narrow {
    padding: 0 16px;
  }
  .about-main-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .about-intro-p {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .about-block {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .block-title-row h2 {
    font-size: 18px;
  }
  
  .about-stats-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
  }
  
  .smaster-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }
  .smaster-content h2 {
    font-size: 17px;
  }
  
  .contact-form-card {
    padding: 22px 16px;
  }
  .cinfo-card {
    padding: 20px 16px;
  }
  .contact-submit-btn {
    width:           100%;
    justify-content: center;
    text-align:      center;
  }
  
  .faq-question {
    padding: 16px 18px;
  }
  .faq-question h3 {
    font-size: 15px;
  }
  .faq-item.open .faq-answer {
    padding: 14px 18px;
  }
}

/* ===================================================
   SCROLL TO TOP (PAGE UP) FLOATING BUTTON
   =================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(20, 184, 166, 0.3);
  outline: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  border-color: #5EEAD4;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.5), 0 0 20px rgba(94, 234, 212, 0.6);
  color: #FFFFFF;
}

.scroll-top-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}

.scroll-top-btn:hover svg {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 82px !important;
    right: 20px !important;
    width: 44px;
    height: 44px;
  }
}

/* ===================================================
   CHAT ASSISTANT FLOATING WIDGET & MODAL
   =================================================== */
.scroll-top-btn {
  bottom: 92px !important;
}

.chat-assistant-trigger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45), 0 0 20px rgba(6, 182, 212, 0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  outline: none;
}

.chat-assistant-trigger:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 14px 35px rgba(124, 58, 237, 0.6), 0 0 28px rgba(6, 182, 212, 0.5);
}

.chat-assistant-trigger i {
  font-size: 22px;
  color: #FFFFFF;
}

.chat-unread-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 13px;
  height: 13px;
  background: #10B981;
  border: 2px solid #08051A;
  border-radius: 50%;
}

.chat-assistant-modal {
  position: fixed;
  bottom: 92px;
  right: 25px;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 510px;
  max-height: calc(100vh - 120px);
  background: #0F0A2A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(124, 58, 237, 0.25);
  display: flex;
  flex-direction: column;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.chat-assistant-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-modal-header {
  background: linear-gradient(135deg, #1E1035 0%, #0F0A2A 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.chat-header-title {
  font-family: var(--f-jakarta);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.chat-header-status {
  font-family: var(--f-inter);
  font-size: 11.5px;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 6px #10B981;
}

.chat-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}

.chat-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.chat-modal-body {
  flex: 1;
  padding: 16px 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #08051A;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  animation: chatMsgFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatMsgFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg-bot {
  align-self: flex-start;
}

.chat-msg-user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 12px 15px;
  border-radius: 16px;
  font-family: var(--f-inter);
  font-size: 13.5px;
  line-height: 1.55;
}

.chat-msg-bot .chat-bubble {
  background: #191238;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 4px;
}

.chat-msg-user .chat-bubble {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  color: #FFFFFF;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.chat-bubble a {
  color: #38BDF8;
  text-decoration: underline;
  font-weight: 600;
}

.chat-bubble a:hover {
  color: #7DD3FC;
}

.chat-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chat-chip-btn {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #E0E7FF;
  padding: 7px 12px;
  border-radius: 100px;
  font-family: var(--f-inter);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-chip-btn:hover {
  background: var(--grad-btn);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.chat-action-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.chat-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--f-inter);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-btn-wa {
  background: #25D366;
  color: #FFFFFF !important;
}

.chat-btn-wa:hover {
  background: #1DA851;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.chat-btn-contact {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF !important;
}

.chat-btn-contact:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.chat-modal-footer {
  padding: 12px 14px;
  background: #0F0A2A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 16px;
  color: #FFFFFF;
  font-family: var(--f-inter);
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.chat-input:focus {
  border-color: #7C3AED;
  background: rgba(255, 255, 255, 0.1);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-btn);
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

@media (max-width: 480px) {
  .chat-assistant-modal {
    right: 16px;
    bottom: 76px;
    width: calc(100vw - 32px);
    height: 470px;
  }
  .chat-assistant-trigger {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
  .scroll-top-btn {
    bottom: 72px !important;
    right: 16px !important;
  }
}




