@import url('theme.css');

/* ==========================================================================
   TIHOR - MAIN STYLESHEET (ATTACHED WITH THEME.CSS)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@500;600;700;800&display=swap');

/* --- CENTRALIZED THEME TOKENS IMPORTED FROM THEME.CSS --- */

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul { list-style: none; }

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

h1 { font-size: clamp(2.8rem, 5.8vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); }

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 40%, var(--color-cyan) 80%, var(--color-primary) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 8s linear infinite;
}

body.dark-theme .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #3D7EFF 40%, #00F0FF 80%, #FFFFFF 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 8s linear infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.sub-headline {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
}

.badge-tag,
.hud-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(24, 67, 146, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
  animation: badgeFloatPulse 4s ease-in-out infinite alternate;
}

body.dark-theme .badge-tag,
body.dark-theme .hud-badge {
  background: rgba(61, 126, 255, 0.12);
  color: var(--color-glow);
}

@keyframes badgeFloatPulse {
  0% { transform: translateY(0); box-shadow: 0 0 0 rgba(24, 67, 146, 0); }
  50% { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(24, 67, 146, 0.2); }
  100% { transform: translateY(0); box-shadow: 0 0 0 rgba(24, 67, 146, 0); }
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 64px 0;
}

.text-center { 
  text-align: center !important; 
}

.text-center > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center p,
.text-center .sub-headline,
.text-center .badge-tag,
.text-center .hud-badge {
  text-align: center !important;
}

.mx-auto { 
  margin-left: auto !important; 
  margin-right: auto !important; 
}

/* --- LUXURY BENTO GRID SYSTEM --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.bento-col-12 { grid-column: span 12; }
.bento-col-8  { grid-column: span 8; }
.bento-col-6  { grid-column: span 6; }
.bento-col-4  { grid-column: span 4; }

@media (max-width: 1024px) {
  .bento-col-8, .bento-col-6, .bento-col-4 { grid-column: span 12; }
}

/* --- GLASS CARDS & BUTTONS --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth), background-color var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

/* --- FORM INPUT CONTROLS & DROPDOWN HIGH CONTRAST STYLING --- */
.form-input-styled {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  background: var(--bg-main);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input-styled:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(24, 67, 146, 0.2);
}

select.form-input-styled option {
  background: #0D0D0F;
  color: #FFFFFF;
  padding: 10px;
}

body:not(.dark-theme) select.form-input-styled option {
  background: #FFFFFF;
  color: #0D0D0F;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all var(--transition-smooth);
}

.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(24, 67, 146, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--color-accent);
  box-shadow: 0 8px 32px rgba(24, 67, 146, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(24, 67, 146, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* --- ULTRA-SMOOTH GLOWING CUSTOM CURSOR & TEXT SPOTLIGHT --- */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, background-color 0.3s ease, width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(24, 67, 146, 0.4);
}

#cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(24, 67, 146, 0.4);
  background: rgba(24, 67, 146, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
}

@media (pointer: coarse), (max-width: 768px) {
  #custom-cursor, #cursor-follower {
    display: none !important;
  }
}

body.dark-theme #custom-cursor {
  background-color: #3D7EFF;
  box-shadow: 0 0 16px #3D7EFF;
}

body.dark-theme #cursor-follower {
  border-color: rgba(61, 126, 255, 0.5);
  background: rgba(61, 126, 255, 0.08);
}

/* CURSOR HOVER ON INTERACTIVE BUTTONS & CARDS */
body.cursor-active #custom-cursor {
  transform: translate(-50%, -50%) scale(1.8);
  background-color: #3D7EFF;
}

body.cursor-active #cursor-follower {
  width: 58px;
  height: 58px;
  border-color: var(--color-primary);
  background: rgba(61, 126, 255, 0.14);
}

/* CURSOR HOVER ON TEXT ELEMENTS (SPOTLIGHT LENS) */
body.cursor-text #cursor-follower {
  width: 68px;
  height: 68px;
  background: rgba(24, 67, 146, 0.12);
  border-color: var(--color-primary);
  box-shadow: 0 0 25px rgba(24, 67, 146, 0.2);
}

body.dark-theme.cursor-text #cursor-follower {
  background: rgba(61, 126, 255, 0.2);
  border-color: #3D7EFF;
  box-shadow: 0 0 30px rgba(61, 126, 255, 0.35);
}

/* --- TEXT COLOR TRANSFORMATION UNDER CURSOR --- */
h1, h2, h3, h4, h5, h6,
.sub-headline, p, .nav-link,
.badge-tag, .stat-number, .stat-label {
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s ease;
}

h1:hover, h2:hover, h3:hover, h4:hover {
  color: var(--color-primary);
  text-shadow: 0 4px 20px rgba(24, 67, 146, 0.18);
}

body.dark-theme h1:hover, 
body.dark-theme h2:hover, 
body.dark-theme h3:hover, 
body.dark-theme h4:hover {
  color: #3D7EFF;
  text-shadow: 0 4px 25px rgba(61, 126, 255, 0.45);
}

p:hover, .sub-headline:hover {
  color: var(--text-main);
}

body.dark-theme p:hover, 
body.dark-theme .sub-headline:hover {
  color: #FFFFFF;
}

/* --- FLOATING HEADER NAVIGATION --- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: var(--container-max);
  height: 72px;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-pill);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

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

.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.site-footer .logo-img {
  height: 48px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  background: rgba(24, 67, 146, 0.1);
  border-color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
}

/* --- HERO SECTION WITH LIGHT 3D CANVAS --- */
.hero-section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 124px;
  padding-bottom: 44px;
  overflow: hidden;
}

#hero-canvas {
  display: none !important;
}

.hero-flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1.2;
  max-width: 820px;
}

.hero-3d-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex: 1;
}

.portfolio-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.portfolio-card {
  padding: 0 !important;
  overflow: hidden;
}

.portfolio-thumb {
  height: 240px;
  overflow: hidden;
}

.portfolio-info {
  padding: 28px 24px;
}

.cta-card {
  padding: 80px 40px;
}

/* --- 3D ANIMATED "TihoR" BRANDING WITH REVERSED CAPITAL 'R' (RIGHT SIDE) --- */
.tihor-3d-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  perspective: 1000px;
  margin: 0;
  user-select: none;
  cursor: pointer;
}

.letter-3d {
  display: inline-block;
  color: var(--color-primary);
  text-shadow: 
    0 1px 0 #123370,
    0 2px 0 #0f2d63,
    0 3px 0 #0c2452,
    0 4px 0 #091c40,
    0 5px 0 #06132e,
    0 12px 24px rgba(24, 67, 146, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.35s ease, color 0.35s ease;
  animation: floatLetter 4s ease-in-out infinite alternate;
}

.letter-3d:nth-child(1) { animation-delay: 0s; }
.letter-3d:nth-child(2) { animation-delay: 0.15s; }
.letter-3d:nth-child(3) { animation-delay: 0.3s; }
.letter-3d:nth-child(4) { animation-delay: 0.45s; }
.letter-3d:nth-child(5) { animation-delay: 0.6s; }

/* REVERSED CAPITAL 'R' STYLING */
.letter-reversed-r {
  transform: scaleX(-1);
  display: inline-block;
  color: var(--color-primary);
  text-shadow: 
    0 1px 0 #123370,
    0 2px 0 #0f2d63,
    0 3px 0 #0c2452,
    0 4px 0 #091c40,
    0 5px 0 #06132e,
    0 12px 24px rgba(24, 67, 146, 0.35);
  animation: floatLetterReversed 4s ease-in-out infinite alternate;
  animation-delay: 0.6s;
}

.letter-3d:hover {
  transform: translateY(-10px) translateZ(25px) rotateY(18deg) rotateX(8deg);
  color: #225cba;
  text-shadow: 
    0 1px 0 #123370,
    0 3px 0 #0f2d63,
    0 6px 0 #0c2452,
    0 8px 0 #091c40,
    0 16px 30px rgba(24, 67, 146, 0.5);
}

.letter-reversed-r:hover {
  transform: scaleX(-1) translateY(-10px) translateZ(25px) rotateY(-18deg) rotateX(8deg);
  color: #225cba;
}

@keyframes floatLetter {
  0% { transform: translateY(0px) rotateX(0deg); }
  100% { transform: translateY(-8px) rotateX(6deg); }
}

@keyframes floatLetterReversed {
  0% { transform: scaleX(-1) translateY(0px) rotateX(0deg); }
  100% { transform: scaleX(-1) translateY(-8px) rotateX(6deg); }
}

body.dark-theme .letter-3d,
body.dark-theme .letter-reversed-r {
  color: #FFFFFF;
  text-shadow: 
    0 1px 0 #3d7eff,
    0 2px 0 #225cba,
    0 3px 0 #184392,
    0 4px 0 #0f2d63,
    0 12px 28px rgba(61, 126, 255, 0.45);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* --- LOGO TICKER --- */
.ticker-section {
  padding: 36px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

body.dark-theme .ticker-section {
  background: rgba(5, 7, 11, 0.5);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- STATS COUNTER --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

body.dark-theme .stat-number {
  color: var(--color-glow);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- SERVICES & CARDS (MINIMALIST VECTOR ICONS) --- */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(24, 67, 146, 0.08);
  border: 1px solid var(--border-glass);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  transition: transform var(--transition-smooth);
}

.glass-card:hover .service-icon {
  transform: scale(1.08);
  background: var(--color-primary);
  color: #FFFFFF;
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 840px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 28px;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-glass);
  background: #FAFAFA;
  padding-top: 80px;
  padding-bottom: 40px;
}

body.dark-theme .site-footer {
  background: #030508;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.8fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* --- ANIMATED CAT & PENGUIN FOOTER MASCOT STAGE --- */
.mascot-stage {
  position: relative;
  width: 180px;
  height: 90px;
  margin-top: 14px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.mascot-stage .mascot-wall {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), #3D7EFF);
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(24, 67, 146, 0.3);
}

.mascot-speech-bubble {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 20;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(24, 67, 146, 0.25);
}

.mascot-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: var(--color-primary) transparent;
  display: block;
  width: 0;
}

.mascot-speech-bubble.show {
  transform: translateX(-50%) scale(1);
}

.mascots-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
}

.mascot {
  width: 68px;
  height: 68px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: mascotPopCycle 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cat-mascot {
  animation: catPeriscope 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.penguin-mascot {
  animation: penguinPeriscope 7s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  animation-delay: 0.25s;
}

/* EYE BLINK ANIMATION */
.mascot-svg .eye {
  animation: eyeBlink 3.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes eyeBlink {
  0%, 94%, 98%, 100% { transform: scaleY(1); }
  96% { transform: scaleY(0.1); }
}

/* EAR TWITCH & BEAK NOD */
.cat-ear {
  transform-origin: bottom center;
  animation: earTwitch 2.2s ease-in-out infinite alternate;
}
.ear-right { animation-delay: 0.3s; }

@keyframes earTwitch {
  0%, 85%, 100% { transform: rotate(0deg); }
  90% { transform: rotate(12deg); }
}

.penguin-mascot .beak {
  transform-origin: center;
  animation: beakNod 2s ease-in-out infinite alternate;
}

@keyframes beakNod {
  0%, 80%, 100% { transform: translateY(0); }
  90% { transform: translateY(3px) scale(1.15); }
}

/* OPTION 4: CURIOUS PERISCOPE & DUCK ANIMATION CYCLES */
@keyframes catPeriscope {
  0% { transform: translateY(110%) scale(0.9); }          /* Hidden */
  8% { transform: translateY(-14px) rotate(-6deg); }       /* PERISCOPE POP HIGH! */
  14% { transform: translateY(-10px) rotate(6deg); }       /* Scan right */
  22% { transform: translateY(-14px) rotate(-10deg); }      /* Scan left */
  35% { transform: translateY(-8px) rotate(0deg); }        /* Normal peek */
  50% { transform: translateY(-14px) rotate(8deg); }       /* High peek right */
  68% { transform: translateY(0) rotate(0deg); }
  
  /* DUCK DOWN & HIDE */
  78% { transform: translateY(110%); }                     /* DUCK! */
  100% { transform: translateY(110%); }                    /* Hidden pause */
}

@keyframes penguinPeriscope {
  0% { transform: translateY(110%) scale(0.9); }          /* Hidden */
  10% { transform: translateY(-14px) rotate(6deg); }       /* PERISCOPE POP HIGH! */
  18% { transform: translateY(-10px) rotate(-6deg); }      /* Scan left */
  26% { transform: translateY(-14px) rotate(10deg); }      /* Scan right */
  38% { transform: translateY(-8px) rotate(0deg); }        /* Normal peek */
  52% { transform: translateY(-14px) rotate(-8deg); }      /* High peek left */
  70% { transform: translateY(0) rotate(0deg); }
  
  /* DUCK DOWN & HIDE */
  80% { transform: translateY(110%); }                     /* DUCK! */
  100% { transform: translateY(110%); }                    /* Hidden pause */
}

/* OPTION 4 HOVER DUCK DOWN / HIDE & SEEK INTERACTION */
.mascot-stage:hover .mascot {
  animation-play-state: paused;
  transform: translateY(110%) !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  color: var(--text-muted);
}

body.dark-theme .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* --- MOBILE NAVIGATION OVERLAY & DRAWER --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
  transform: translateY(-10px);
  padding: 40px 24px;
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-glass);
}

.mobile-nav-overlay .nav-link {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.mobile-nav-overlay .nav-link.active,
.mobile-nav-overlay .nav-link:hover {
  color: var(--color-primary);
  background: rgba(24, 67, 146, 0.06);
}

/* HAMBURGER TOGGLE ANIMATION */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  z-index: 100000;
  transition: all var(--transition-fast);
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- STICKY WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

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

/* TABLETS & SMALL LAPTOPS (<= 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .section-padding {
    padding: 80px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .glass-card {
    padding: 28px 22px;
  }
  .bento-grid {
    gap: 20px;
  }
}

/* TABLETS PORTRAIT & MOBILE LANDSCAPE (<= 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .nav-menu, 
  .header-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-container {
    padding: 10px 16px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .brand-logo .logo-img {
    height: 34px;
    max-width: 140px;
  }

  main {
    padding-top: 0 !important;
  }

  .section-padding {
    padding: 36px 0;
  }

  h1 {
    font-size: clamp(2rem, 7.5vw, 3rem);
    line-height: 1.25;
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.3;
  }

  h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .sub-headline {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .glass-card {
    padding: 24px 18px;
    border-radius: var(--border-radius-sm);
  }

  .bento-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .bento-col-12, .bento-col-8, .bento-col-6, .bento-col-4 {
    grid-column: span 12 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding-top: 24px;
  }

  .mascot-stage {
    margin: 16px auto 0 auto;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .hero-flex-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 115px;
    padding-bottom: 28px;
  }

  .hero-content, .hero-3d-right {
    min-width: 0 !important;
    width: 100%;
    text-align: center;
  }

  .sub-headline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
  }

  .cta-card {
    padding: 36px 18px !important;
  }

  .tihor-3d-brand {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    justify-content: center;
  }

  img, svg, video, iframe, figure {
    max-width: 100%;
    height: auto;
  }

  table {
    display: block;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .bento-grid-mobile-1col {
    grid-template-columns: 1fr !important;
  }

  input, select, textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* MOBILE PHONES (<= 576px) */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 18px 10px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* MOBILE PHONES (<= 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .section-padding {
    padding: 44px 0;
  }

  .glass-card {
    padding: 20px 14px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    padding: 13px 20px;
    font-size: 0.94rem;
  }

  .badge-tag, .hud-badge {
    padding: 5px 12px;
    font-size: 0.76rem;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-3d-right {
    padding: 10px 0;
  }

  .tihor-3d-brand {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }
}

/* ==========================================================================
   TIHOR - COMPREHENSIVE DARK THEME CONTRAST & ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* 1. Dark Theme Body & Surface Tokens */
body.dark-theme {
  --bg-main: #05070B;
  --text-main: #FFFFFF;
  --bg-card: rgba(17, 20, 26, 0.85);
  --bg-card-hover: rgba(26, 34, 48, 0.95);
  --bg-glass: rgba(15, 23, 42, 0.7);
  --bg-nav: rgba(5, 7, 11, 0.92);

  --text-muted: #94A3B8;
  --text-sub: #CBD5E1;

  --border-glass: rgba(61, 126, 255, 0.25);
  --border-glow: rgba(75, 140, 255, 0.55);
  --shadow-glow: 0 0 35px rgba(61, 126, 255, 0.3);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* 2. Glass Cards High Contrast in Dark Theme */
body.dark-theme .glass-card {
  background: var(--bg-card);
  border-color: var(--border-glass);
  box-shadow: var(--shadow-glass);
}

body.dark-theme .glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

/* 3. Section Background Overrides for Both Themes */
body.dark-theme section[style*="background: rgba(255, 255, 255, 0.02)"],
body.dark-theme section[style*="background:rgba(255,255,255,0.02)"] {
  background: rgba(255, 255, 255, 0.03) !important;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

body:not(.dark-theme) section[style*="background: rgba(255, 255, 255, 0.02)"],
body:not(.dark-theme) section[style*="background:rgba(255,255,255,0.02)"] {
  background: rgba(24, 67, 146, 0.03) !important;
  border-top: 1px solid rgba(24, 67, 146, 0.08);
  border-bottom: 1px solid rgba(24, 67, 146, 0.08);
}

/* 4. Form Inputs in Dark Theme */
body.dark-theme .form-input-styled {
  background: #0E121A;
  border-color: rgba(61, 126, 255, 0.3);
  color: #FFFFFF;
}

body.dark-theme .form-input-styled:focus {
  border-color: #3D7EFF;
  box-shadow: 0 0 0 3px rgba(61, 126, 255, 0.3);
}

body.dark-theme select.form-input-styled option {
  background: #0E121A;
  color: #FFFFFF;
}

/* 5. Tables & SLA Grids in Dark Theme */
body.dark-theme table {
  color: #FFFFFF;
}

body.dark-theme table th {
  color: #00F0FF;
  border-bottom-color: rgba(61, 126, 255, 0.3);
}

body.dark-theme table td {
  border-bottom-color: rgba(61, 126, 255, 0.15);
}

/* 6. FAQ Accordion in Dark Theme */
body.dark-theme .faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
}

body.dark-theme .faq-question {
  color: #FFFFFF;
}

body.dark-theme .faq-answer {
  color: #94A3B8;
}

/* 7. Icon Buttons & Nav in Dark Theme */
body.dark-theme .icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(61, 126, 255, 0.3);
  color: #FFFFFF;
}

body.dark-theme .icon-btn:hover {
  background: rgba(61, 126, 255, 0.2);
  border-color: #3D7EFF;
  color: #00F0FF;
}

body.dark-theme .site-header {
  background: var(--bg-nav);
  border-color: var(--border-glass);
}

/* ==========================================================================
   TIHOR - COMPREHENSIVE LIGHT THEME CONTRAST & ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* 1. Light Theme Body & Surface Tokens */
body:not(.dark-theme) {
  --bg-main: #FFFFFF;
  --text-main: #0D0D0F;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-nav: rgba(255, 255, 255, 0.94);

  --text-muted: #475569;
  --text-sub: #1E293B;

  --border-glass: rgba(24, 67, 146, 0.14);
  --border-glow: rgba(24, 67, 146, 0.4);
  --shadow-glow: 0 12px 36px rgba(24, 67, 146, 0.15);
  --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* 2. Glass Cards High Contrast in Light Theme */
body:not(.dark-theme) .glass-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(24, 67, 146, 0.14) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body:not(.dark-theme) .glass-card:hover {
  background: #F8FAFC !important;
  border-color: rgba(24, 67, 146, 0.4) !important;
  box-shadow: 0 12px 36px rgba(24, 67, 146, 0.15) !important;
}

/* 3. Form Inputs in Light Theme */
body:not(.dark-theme) .form-input-styled {
  background: #F8FAFC;
  border-color: rgba(24, 67, 146, 0.2);
  color: #0D0D0F;
}

body:not(.dark-theme) .form-input-styled:focus {
  border-color: #184392;
  box-shadow: 0 0 0 3px rgba(24, 67, 146, 0.15);
  background: #FFFFFF;
}

body:not(.dark-theme) select.form-input-styled option {
  background: #FFFFFF;
  color: #0D0D0F;
}

/* 4. Tables & SLA Priority Matrix Contrast in Light Theme */
body:not(.dark-theme) table {
  color: #0D0D0F;
}

body:not(.dark-theme) table th {
  color: #184392;
  border-bottom: 2px solid rgba(24, 67, 146, 0.2);
}

body:not(.dark-theme) table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Priority Matrix Accessible Colors in Light Theme */
body:not(.dark-theme) td[style*="color: #ff4d4d"],
body:not(.dark-theme) td[style*="color:#ff4d4d"] { color: #D32F2F !important; }

body:not(.dark-theme) td[style*="color: #ff944d"],
body:not(.dark-theme) td[style*="color:#ff944d"] { color: #E65100 !important; }

body:not(.dark-theme) td[style*="color: #ffdb4d"],
body:not(.dark-theme) td[style*="color:#ffdb4d"] { color: #B78103 !important; }

body:not(.dark-theme) td[style*="color: #4dff88"],
body:not(.dark-theme) td[style*="color:#4dff88"] { color: #1B5E20 !important; }

body:not(.dark-theme) [style*="color: var(--color-cyan)"] { color: #184392 !important; }

/* 5. Code Blocks & Flow Containers in Light Theme */
body:not(.dark-theme) [style*="background: rgba(0, 240, 255, 0.03)"],
body:not(.dark-theme) [style*="background:rgba(0,240,255,0.03)"] {
  background: rgba(24, 67, 146, 0.06) !important;
  border: 1px solid rgba(24, 67, 146, 0.2) !important;
}

body:not(.dark-theme) [style*="background: rgba(255, 255, 255, 0.02)"],
body:not(.dark-theme) [style*="background:rgba(255,255,255,0.02)"] {
  background: rgba(24, 67, 146, 0.04) !important;
  border: 1px solid rgba(24, 67, 146, 0.12) !important;
}

/* 6. FAQ Accordion in Light Theme */
body:not(.dark-theme) .faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(24, 67, 146, 0.14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

body:not(.dark-theme) .faq-question {
  color: #0D0D0F;
}

body:not(.dark-theme) .faq-answer {
  color: #475569;
}

/* 7. Icon Buttons & Floating Header in Light Theme */
body:not(.dark-theme) .icon-btn {
  background: rgba(24, 67, 146, 0.06);
  border: 1px solid rgba(24, 67, 146, 0.15);
  color: #0D0D0F;
}

body:not(.dark-theme) .icon-btn:hover {
  background: rgba(24, 67, 146, 0.12);
  border-color: #184392;
  color: #184392;
}

body:not(.dark-theme) .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(24, 67, 146, 0.14);
}

/* ==========================================================================
   TIHOR — SERVICE WEBP IMAGE SHOWCASE & HOVER EFFECTS
   ========================================================================== */
.card-img-hover {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover .card-img-hover,
.glass-card:hover .service-hero-img {
  transform: scale(1.06) !important;
}

/* ==========================================================================
   TIHOR — ULTRA-MODERN SERVICE SPLIT HERO & FEATURE IMAGE CARDS
   ========================================================================== */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-img-glass-card {
  position: relative;
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(24, 67, 146, 0.15);
  box-shadow: 0 20px 40px -15px rgba(24, 67, 146, 0.12);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

html.dark-theme .service-img-glass-card {
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 20px 50px -15px rgba(61, 126, 255, 0.25);
  border-color: rgba(61, 126, 255, 0.25);
}

.service-img-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -10px rgba(24, 67, 146, 0.2);
}

.service-img-glass-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

.service-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .service-split-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ==========================================================================
   TIHOR - SEQUENTIAL SCROLL SERVICES SHOWCASE
   ========================================================================== */
.services-sticky-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.services-sticky-sidebar {
  position: sticky;
  top: 110px;
  padding-right: 16px;
  z-index: 10;
}

.services-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--border-glass);
  border-radius: 4px;
  margin: 16px 0 12px;
  overflow: hidden;
}

.services-progress-fill {
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
  transition: width 0.4s ease-out;
}

.services-scroll-cascade {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.service-scroll-card {
  opacity: 0.35;
  transform: translateY(40px) scale(0.96);
  filter: blur(3px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-scroll-card.active-scroll-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
  border-color: var(--color-cyan) !important;
  box-shadow: 0 14px 48px rgba(0, 240, 255, 0.18) !important;
}

@media (max-width: 992px) {
  .services-sticky-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-sticky-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
  .service-scroll-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ==========================================================================
   TIHOR - VERTICAL TIMELINE STEPPER & 3D CUBE STYLES
   ========================================================================== */
.services-timeline-line {
  position: absolute;
  left: 12px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-cyan), var(--border-glass));
  z-index: 1;
}

.stepper-node {
  position: absolute;
  left: -48px;
  top: 28px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-scroll-card.active-scroll-card .stepper-node,
.stepper-node-active {
  background: var(--color-primary) !important;
  border-color: var(--color-cyan) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.6) !important;
  transform: scale(1.15);
}

@keyframes floatCube {
  0% { transform: rotateX(15deg) rotateY(-20deg) translateY(0); }
  50% { transform: rotateX(25deg) rotateY(15deg) translateY(-8px); }
  100% { transform: rotateX(15deg) rotateY(-20deg) translateY(0); }
}

@media (max-width: 768px) {
  .services-timeline-wrapper {
    padding-left: 0 !important;
  }
  .services-timeline-line, .stepper-node {
    display: none !important;
  }
}

/* ==========================================================================
   TIHOR - FEATURED BUY TOOLS SHOWCASE & MOBILE LAYOUT FIXES
   ========================================================================== */
.buy-tools-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 991px) {
  .buy-tools-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .buy-tools-thumb {
    height: 240px !important;
  }
}

@media (max-width: 576px) {
  .buy-tools-thumb {
    height: 200px !important;
  }
}

/* Global Mobile Responsiveness & Overflow Protection */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .service-title-item {
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
  }
  
  .services-title-list {
    max-height: 380px !important;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}