/* ==========================================================================
   KALLYAS ORION HOMEPAGE — OFFICIAL ART STUDIO THEME STYLESHEET
   Matching https://demo.kallyas.net/orion-homepage/ exact pixel-perfection
   ========================================================================== */

:root {
  --kl-red: #cd2122;
  --kl-red-hover: #b31b1c;
  --kl-red-light: rgba(205, 33, 34, 0.08);
  --kl-dark-bg: #181b1f;
  --kl-dark-alt: #131518;
  --kl-dark-header: rgba(24, 27, 31, 0.94);
  --kl-dark-card: #20242a;
  --kl-text-body: #62656a;
  --kl-text-dark: #2c2f34;
  --kl-text-light: #9ea2a8;
  --kl-heading-color: #22252a;
  --kl-border-light: #e6e8eb;
  --kl-border-dark: rgba(255, 255, 255, 0.1);
  --kl-container-width: 1170px;
  --kl-font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --kl-font-heading: 'Montserrat', 'Raleway', sans-serif;
  --kl-font-script: 'Caveat', 'Playfair Display', cursive, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--kl-font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--kl-text-body);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

a:hover {
  color: var(--kl-red);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--kl-font-heading);
  color: var(--kl-heading-color);
  font-weight: 700;
  margin-top: 0;
  line-height: 1.25;
}

.kl-container {
  width: 100%;
  max-width: var(--kl-container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.kl-container-fluid {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

/* ==========================================================================
   1. TOPBAR (100% Kallyas Orion Match)
   ========================================================================== */
.kl-topbar {
  background: linear-gradient(180deg, #2b3036 0%, #22262b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #9aa0a6;
  position: relative;
  z-index: 105;
  height: 38px;
}

.kl-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.kl-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kl-topbar-socials {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 14px;
}

.kl-topbar-socials a {
  color: #c0c5cc;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.kl-topbar-socials a:hover {
  color: var(--kl-red);
}

.kl-topbar-phone {
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #9aa0a6;
}

.kl-topbar-phone strong,
.kl-topbar-phone a {
  color: #ffffff;
  font-weight: 700;
  margin-left: 2px;
}

.kl-topbar-phone a:hover {
  color: var(--kl-red);
}

.kl-topbar-right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 18px;
}

.kl-topbar-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
  height: 100%;
}

.kl-topbar-menu > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.kl-topbar-menu a,
.kl-topbar-menu span {
  color: #c0c5cc;
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.kl-topbar-menu a:hover {
  color: #ffffff;
}

/* Language Dropdown */
.kl-lang-dropdown {
  position: relative;
}

.kl-lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 140px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-radius: 2px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 200;
}

.kl-lang-dropdown:hover .kl-lang-dropdown-menu {
  display: block;
}

.kl-lang-dropdown-menu li a {
  color: #333333;
  padding: 6px 14px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kl-lang-dropdown-menu li a:hover {
  background: #f5f5f5;
  color: var(--kl-red);
}

.kl-flag-icon {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  display: inline-block;
  background-size: cover;
}

/* Search Box Container in Topbar (Matching Original) */
.kl-topbar-search-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.kl-topbar-search-trigger {
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #191c20;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  transition: background-color 0.2s, color 0.2s;
}

.kl-topbar-search-trigger:hover {
  background: var(--kl-red);
  color: #ffffff;
}

.kl-search-box {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1c2025;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: none;
  z-index: 150;
  width: 260px;
}

.kl-search-box.active {
  display: block;
}

.kl-search-box input {
  width: 100%;
  background: #272d34;
  border: 1px solid #3b424c;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 2px;
  outline: none;
}

/* ==========================================================================
   2. MAIN HEADER (100% Kallyas Orion Match)
   ========================================================================== */
.kl-main-header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(37, 43, 49, 0.94) 0%, rgba(27, 31, 36, 0.92) 100%);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 8px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.kl-main-header.kl-sticky {
  position: fixed;
  top: 0;
  background: rgba(22, 25, 29, 0.97);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.kl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.3s ease;
  position: relative;
}

.kl-main-header.kl-sticky .kl-header-inner {
  height: 70px;
}

/* Clean Brand Logo */
.kl-logo-area {
  display: flex;
  align-items: center;
}

.kl-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.kl-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.kl-main-header.kl-sticky .kl-brand-logo {
  height: 50px;
}

/* Navigation Menu with Kallyas Pointer Dash */
.kl-nav-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  margin-right: 18px;
}

.kl-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  gap: 4px;
}

.kl-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.kl-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2px 2px;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
}

/* The text wrapper */
.kl-nav-link span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-family: var(--kl-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
  z-index: 2;
  transition: color 0.2s ease;
}

/* ==========================================================================
   ANIMATED RED BOX (Hover & Active Tab)
   Starts from the horizontal center line:
   Top moves UP and bottom moves DOWN simultaneously!
   ========================================================================== */
.kl-nav-link span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--kl-red);
  border-radius: 2px;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: 50% 50%; /* Exactly from horizontal center line */
  transition: transform 0.26s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
  box-shadow: 0 4px 14px rgba(205, 33, 34, 0.4);
  pointer-events: none;
}

/* Active tab has the red box open */
.kl-nav-item.active .kl-nav-link span::before,
/* Hovering ANY tab opens the red box with the top-up/bottom-down animation */
.kl-nav-item:hover .kl-nav-link span::before,
.kl-nav-link:hover span::before {
  transform: scaleY(1);
}

/* Pointer Dash underneath the red box */
.kl-nav-link::after {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background-color: var(--kl-red);
  margin-top: 5px;
  border-radius: 1px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.24s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
  pointer-events: none;
}

.kl-nav-item.active .kl-nav-link::after,
.kl-nav-item:hover .kl-nav-link::after,
.kl-nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Kallyas Signature Red Ribbon FREE QUOTE Button */
.kl-cta-ribbon {
  background-color: var(--kl-red);
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 68px;
  height: 64px;
  padding: 10px 8px 8px 8px;
  position: relative;
  box-shadow: 0 4px 14px rgba(205, 33, 34, 0.35);
  transition: background-color 0.2s, transform 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.kl-cta-ribbon:hover {
  background-color: var(--kl-red-hover);
  transform: translateY(2px);
}

.kl-cta-ribbon strong {
  font-family: var(--kl-font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}

.kl-cta-ribbon span {
  font-family: var(--kl-font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}

.kl-cta-ribbon .trisvg {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  fill: var(--kl-red);
  width: 14px;
  height: 5px;
  transition: fill 0.2s;
}

.kl-cta-ribbon:hover .trisvg {
  fill: var(--kl-red-hover);
}

.kl-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   3. MEGAMENU DROPDOWN (Exact 4-Column Kallyas Orion Layout)
   ========================================================================== */
.kl-megamenu-parent {
  position: static !important;
}

.kl-megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  border-top: 3px solid var(--kl-red);
  padding: 35px 0 30px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scaleY(0.97);
  transform-origin: top center;
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.32s;
  z-index: 99;
}

.kl-nav-item.kl-megamenu-parent:hover .kl-megamenu,
.kl-nav-item.kl-megamenu-parent:focus-within .kl-megamenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
}

.kl-megamenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.kl-megamenu-col {
  border-right: 1px solid var(--kl-border-light);
  padding-right: 25px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.kl-nav-item.kl-megamenu-parent:hover .kl-megamenu-col:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.04s;
}
.kl-nav-item.kl-megamenu-parent:hover .kl-megamenu-col:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.kl-nav-item.kl-megamenu-parent:hover .kl-megamenu-col:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.kl-nav-item.kl-megamenu-parent:hover .kl-megamenu-col:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.kl-megamenu-col:last-child {
  border-right: none;
  padding-right: 0;
}

.kl-megamenu-title {
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #22252a;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kl-megamenu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.kl-megamenu-links li a {
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6a6f78;
  display: flex;
  align-items: center;
  padding: 3px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.kl-megamenu-links li a:hover {
  color: var(--kl-red);
  padding-left: 4px;
}

.kl-megamenu-links li a::before {
  content: "•";
  color: #b0b5bc;
  margin-right: 8px;
  font-size: 10px;
  transition: color 0.2s;
}

.kl-megamenu-links li a:hover::before {
  color: var(--kl-red);
}

/* Regular Dropdown (for Portfolio, About Us, etc.) */
.kl-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  border-top: 3px solid var(--kl-red);
  border-radius: 0 0 3px 3px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.28s;
  z-index: 99;
}

.kl-dropdown.dropdown-right {
  left: auto;
  right: 0;
}

.kl-nav-item:hover .kl-dropdown,
.kl-nav-item:focus-within .kl-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.kl-dropdown li {
  border-bottom: 1px solid #f2f3f5;
}

.kl-dropdown li:last-child {
  border-bottom: none;
}

.kl-dropdown li a {
  padding: 10px 20px;
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3f454d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  text-decoration: none;
}

.kl-dropdown li a:hover {
  background: #f8f9fa;
  color: var(--kl-red);
  padding-left: 25px;
}

/* ==========================================================================
   4. HERO SLIDER (iOS Slider / Kallyas Signature Showcase)
   ========================================================================== */
.kl-hero-slider {
  position: relative;
  height: 680px;
  overflow: hidden;
  background: #111417;
}

@media (min-width: 992px) {
  .kl-hero-slider {
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
    min-height: 720px;
  }
}

.kl-slider-track {
  height: 100%;
  position: relative;
}

.kl-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 1s ease-out;
  transform: scale(1.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kl-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.kl-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(16, 20, 24, 0.6) 0%, rgba(12, 14, 17, 0.88) 100%);
  z-index: 1;
}

.kl-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1040px;
  width: 100%;
  padding: 100px 30px 80px 30px;
  box-sizing: border-box;
}

/* Huge Bold Modern Typography with balanced lines */
.kl-slide-title {
  font-family: var(--kl-font-heading);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 300;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.kl-slide-title strong {
  font-weight: 800;
  color: #ffffff;
}

.kl-slide-title .kl-title-line {
  display: block;
}

@media (min-width: 768px) {
  .kl-slide-title .kl-title-line {
    white-space: nowrap;
  }
}

.kl-slide-title .kl-highlight {
  color: #ffffff;
}

/* Red Separator Line */
.kl-separator-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 26px auto;
  width: 90px;
  height: 3px;
  background: var(--kl-red);
  border-radius: 2px;
}

/* Button Group */
.kl-slide-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.kl-btn-primary {
  background-color: var(--kl-red);
  color: #ffffff;
  font-family: var(--kl-font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 13px 32px;
  border-radius: 2px;
  border: 2px solid var(--kl-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(205, 33, 34, 0.4);
  transition: all 0.25s ease;
  min-height: 50px;
  box-sizing: border-box;
  text-decoration: none;
}

.kl-btn-primary:hover {
  background-color: var(--kl-red-hover);
  border-color: var(--kl-red-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 33, 34, 0.55);
}

.kl-btn-outline {
  background-color: transparent;
  color: #ffffff;
  font-family: var(--kl-font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: none;
  padding: 13px 32px;
  border-radius: 2px;
  border: 2px solid #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 50px;
  box-sizing: border-box;
  text-decoration: none;
}

.kl-btn-outline:hover {
  background-color: #ffffff;
  color: #111417;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.kl-slide-subtitle {
  font-family: var(--kl-font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #c4cad2;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* Slider Controls: Chevrons */
.kl-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.kl-slider-arrow:hover {
  background: var(--kl-red);
  border-color: var(--kl-red);
  color: #ffffff;
}

.kl-slider-prev {
  left: 25px;
}

.kl-slider-next {
  right: 25px;
}

/* Horizontal Indicator Bars on Bottom Right (Kallyas iOS Slider Bullets2) */
.kl-ios-selectors-block.bullets2 {
  position: absolute;
  bottom: 42px;
  right: 32px;
  z-index: 11;
}

.kl-ios-selectors-block.bullets2 ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kl-ios-selectors-block.bullets2 li {
  display: block;
  width: 32px;
  height: 8px;
  padding: 3px 0;
  margin: 0;
  opacity: 0.5;
  transition: opacity 0.25s ease, width 0.25s ease;
  cursor: pointer;
}

.kl-ios-selectors-block.bullets2 li:hover,
.kl-ios-selectors-block.bullets2 li.selected {
  opacity: 1;
  width: 48px;
}

.kl-ios-selectors-block.bullets2 li span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .kl-ios-selectors-block.bullets2 {
    display: none;
  }
}

/* Kallyas Signature Bottom Mask 3 (Curved Mound with Centered Down Chevron) */
.kl-mask {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.kl-bottommask {
  bottom: 0;
}

.kl-mask--mask3 {
  height: 57px;
  overflow: hidden;
}

.kl-mask--mask3 .svgmask {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  pointer-events: none;
}

.kl-mask--light .bmask-bgfill {
  fill: #ffffff;
}

.kl-mask--mask3 .kl-mask-chevron {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8adb5;
  font-size: 13px;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s ease;
  z-index: 12;
  text-decoration: none;
}

.kl-mask--mask3 .kl-mask-chevron:hover {
  color: var(--kl-red);
  transform: translateX(-50%) translateY(2px);
}

/* ==========================================================================
   5. CALLOUT / QUOTE BOX WITH CIRCULAR PLAY BUTTON
   ========================================================================== */
.kl-callout-section {
  padding: 60px 0 50px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--kl-border-light);
}

.kl-callout-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.kl-callout-content {
  flex: 1;
}

.kl-callout-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: #33383f;
  margin-bottom: 10px;
}

.kl-callout-title strong {
  color: var(--kl-red);
  font-weight: 700;
}

.kl-callout-desc {
  font-size: 13px;
  color: #7b8087;
  margin: 0;
}

/* Big Red Circular Play / Reel Button */
.kl-callout-action {
  flex-shrink: 0;
}

.kl-circle-play-btn {
  width: 90px;
  height: 90px;
  background: var(--kl-red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(205, 33, 34, 0.4);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.kl-circle-play-btn:hover {
  background: var(--kl-red-hover);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(205, 33, 34, 0.5);
}

.kl-circle-play-btn i {
  font-size: 24px;
  margin-bottom: 4px;
}

.kl-circle-play-btn span {
  font-family: var(--kl-font-heading);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   6. SERVICES SECTION (3 Columns with Red Circle Outline Icons)
   ========================================================================== */
.kl-services-section {
  padding: 85px 0 80px 0;
  background: #ffffff;
}

.kl-section-header {
  text-align: center;
  margin-bottom: 55px;
}

.kl-section-title {
  font-family: var(--kl-font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22252a;
  margin-bottom: 12px;
}

.kl-section-subtitle {
  font-size: 13px;
  color: #72777f;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.kl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.kl-service-card {
  text-align: center;
  padding: 10px;
}

.kl-service-icon-circle {
  width: 76px;
  height: 76px;
  border: 2px solid var(--kl-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  color: var(--kl-red);
  font-size: 28px;
  transition: all 0.3s ease;
}

.kl-service-card:hover .kl-service-icon-circle {
  background: var(--kl-red);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(205, 33, 34, 0.3);
}

.kl-service-title {
  font-family: var(--kl-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #22252a;
  margin-bottom: 14px;
}

.kl-service-text {
  font-size: 13px;
  color: #666c74;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kl-service-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kl-service-checklist li {
  font-size: 12px;
  color: #555b63;
  display: flex;
  align-items: center;
  gap: 10px;
}

.kl-service-checklist li i {
  color: var(--kl-red);
  font-size: 10px;
  flex-shrink: 0;
}

/* ==========================================================================
   6. TRULY MULTI-PURPOSE & OUTSTANDING SECTION
   ========================================================================== */
.kl-multipurpose-section {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid var(--kl-border-light);
  overflow: hidden;
}

.kl-multipurpose-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 520px;
}

.kl-multipurpose-media {
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.kl-multipurpose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 20, 24, 0.45);
}

.kl-multipurpose-badge-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.kl-multipurpose-brand {
  font-family: var(--kl-font-heading);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.kl-multipurpose-redline {
  width: 80px;
  height: 3px;
  background: var(--kl-red);
  margin: 14px auto 0 auto;
  border-radius: 2px;
}

.kl-multipurpose-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.kl-multipurpose-title {
  font-family: var(--kl-font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #22252a;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.kl-multipurpose-title .kl-amp {
  color: var(--kl-red);
  font-weight: 700;
}

.kl-multipurpose-sep {
  width: 45px;
  height: 2px;
  background: #c8ccd2;
  margin-bottom: 22px;
}

.kl-multipurpose-lead {
  font-size: 14px;
  color: #626871;
  line-height: 1.7;
  margin-bottom: 25px;
}

.kl-multipurpose-subdivider {
  width: 100%;
  height: 1px;
  background: var(--kl-border-light);
  margin-bottom: 28px;
}

.kl-multipurpose-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.kl-multipurpose-text-col p {
  font-size: 12.5px;
  color: #6a717b;
  line-height: 1.65;
  margin-bottom: 14px;
}

.kl-multipurpose-tablet-mockup {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  aspect-ratio: 4 / 3;
}

.kl-multipurpose-tablet-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kl-multipurpose-play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.kl-multipurpose-play-trigger:hover {
  background: var(--kl-red);
  border-color: var(--kl-red);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px rgba(205, 33, 34, 0.6);
}

@media (max-width: 991px) {
  .kl-multipurpose-grid {
    grid-template-columns: 1fr;
  }
  .kl-multipurpose-content {
    padding: 50px 30px;
  }
  .kl-multipurpose-cols {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. RECENT WORK / PORTFOLIO GRID (Full Width)
   ========================================================================== */
.kl-work-section--fullwidth {
  padding: 65px 0 75px 0;
  background: #fbfbfc;
  border-top: 1px solid var(--kl-border-light);
  border-bottom: 1px solid var(--kl-border-light);
  width: 100%;
}

.kl-work-fullwidth-container {
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
}

.kl-work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--kl-border-light);
}

.kl-work-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.kl-work-title {
  font-family: var(--kl-font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22252a;
  margin: 0;
}

.kl-work-filters {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kl-filter-btn {
  background: none;
  border: none;
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #7b8088;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.kl-filter-btn:hover,
.kl-filter-btn.active {
  color: var(--kl-red);
}

.kl-work-section--fullwidth .kl-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.kl-work-section--fullwidth .kl-portfolio-thumb {
  position: relative;
  height: 240px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .kl-work-section--fullwidth .kl-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kl-work-fullwidth-container {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .kl-work-section--fullwidth .kl-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.kl-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kl-portfolio-card:hover .kl-portfolio-thumb img {
  transform: scale(1.08);
}

.kl-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(205, 33, 34, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.kl-portfolio-card:hover .kl-portfolio-overlay {
  opacity: 1;
}

.kl-portfolio-overlay-icon {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: var(--kl-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.2s;
}

.kl-portfolio-overlay-icon:hover {
  transform: scale(1.15);
}

.kl-portfolio-overlay-title {
  color: #ffffff;
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.kl-portfolio-overlay-cat {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
}

.kl-portfolio-info {
  padding: 14px 16px;
  border-top: 1px solid var(--kl-border-light);
}

.kl-portfolio-name {
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #22252a;
  margin: 0 0 4px 0;
}

.kl-portfolio-scope {
  font-size: 11px;
  color: #838890;
  margin: 0;
}

/* ==========================================================================
   8. WORK PROCESS IN 3 STEPS (Signature Kallyas Split 4-Block Banner)
   ========================================================================== */
.kl-process-section {
  padding: 70px 0;
  background: #ffffff;
}

.kl-process-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  min-height: 240px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .kl-process-split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .kl-process-split-grid {
    grid-template-columns: 1fr;
  }
}

/* Red Left Introductory Block */
.kl-process-intro-box {
  background: var(--kl-red);
  color: #ffffff;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kl-process-intro-title {
  font-family: var(--kl-font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.kl-process-intro-text {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.kl-process-intro-btn {
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kl-process-intro-btn:hover {
  color: #ffd2d3;
}

/* Dark Grey Step Blocks */
.kl-process-step-box {
  background: #202429;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.kl-process-step-box:hover {
  background: #252a30;
}

.kl-process-step-icon {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 16px;
}

.kl-process-step-title {
  font-family: var(--kl-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: lowercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.kl-process-step-desc {
  font-size: 12px;
  color: #9da3ab;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   9. WHO WE ARE & FEATURE CARDS (Exact 3-Column Section)
   ========================================================================== */
.kl-about-cards-section {
  padding: 85px 0 80px 0;
  background: #ffffff;
}

.kl-about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  gap: 35px;
  align-items: start;
}

.kl-who-we-are-col {
  padding-right: 15px;
}

.kl-who-we-are-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--kl-red);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--kl-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kl-who-we-are-heading {
  font-family: var(--kl-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #22252a;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}

.kl-who-we-are-desc {
  font-size: 13px;
  color: #6a7078;
  line-height: 1.65;
  margin-bottom: 20px;
}

.kl-who-we-are-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kl-who-we-are-list li {
  font-size: 12px;
  color: #555b63;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kl-who-we-are-list li::before {
  content: "•";
  color: var(--kl-red);
  font-size: 14px;
}

/* Two Feature Photo Cards with Red Pill Badges */
.kl-feature-card {
  background: #ffffff;
  border: 1px solid var(--kl-border-light);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.kl-feature-card-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.kl-feature-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kl-feature-card:hover .kl-feature-card-thumb img {
  transform: scale(1.05);
}

.kl-feature-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--kl-red);
  color: #ffffff;
  font-family: var(--kl-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.kl-feature-card-body {
  padding: 18px 20px;
}

.kl-feature-card-text {
  font-size: 12px;
  color: #6a7078;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   10. BELOVED REVIEWS & TECHNOLOGIES (100% Kallyas Red Match)
   ========================================================================== */
.kl-reviews-tech-section {
  position: relative;
  background: #cd2122;
  color: #ffffff;
  padding: 85px 0 70px 0;
  width: 100%;
}

.kl-reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.kl-reviews-heading {
  font-family: var(--kl-font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.kl-reviews-divider {
  width: 45px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

/* 3 Testimonials Speech Bubble Row */
.kl-testimonials-row {
  display: grid;
  grid-template-columns: 1fr 0.52fr 0.52fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 55px;
}

.kl-testimonial-item {
  display: flex;
  flex-direction: column;
}

/* Speech Bubble Box */
.kl-testimonial-bubble {
  position: relative;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  padding: 26px 28px;
  color: #ffffff;
  font-size: 13.5px;
  font-style: italic;
  line-height: 1.7;
}

/* Speech Bubble Arrow (Normal: points down from bubble to author) */
.kl-testimonial-item--normal .kl-testimonial-bubble {
  margin-bottom: 22px;
}

.kl-testimonial-item--normal .kl-testimonial-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 38px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: rgba(0, 0, 0, 0.22) transparent transparent transparent;
}

/* Speech Bubble Arrow (Reversed: points up from bubble to author above) */
.kl-testimonial-item--reversed .kl-testimonial-bubble {
  margin-top: 22px;
}

.kl-testimonial-item--reversed .kl-testimonial-bubble::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 38px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 12px 10px;
  border-color: transparent transparent rgba(0, 0, 0, 0.22) transparent;
}

/* Author Row (Avatar + Details) */
.kl-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 10px;
}

.kl-testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.kl-testimonial-item--std .kl-testimonial-avatar {
  width: 46px;
  height: 46px;
}

.kl-testimonial-name {
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 3px 0;
}

.kl-testimonial-role {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 5px;
}

.kl-testimonial-stars {
  display: flex;
  gap: 2px;
  font-size: 10px;
  color: #ffffff;
}

/* Separator Line before Technologies */
.kl-reviews-tech-sep {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 40px;
}

/* Technologies Bottom Row */
.kl-tech-partners-row {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.kl-tech-label-col {
  padding-bottom: 6px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
}

.kl-tech-label {
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.kl-tech-logos-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.kl-tech-logo-item {
  color: #ffffff;
  text-align: center;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.kl-tech-logo-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.kl-tech-logo-text {
  font-family: var(--kl-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  display: block;
  line-height: 1.25;
}

.kl-tech-logo-text small {
  font-size: 9px;
  display: block;
}

.kl-badge-ctm {
  display: inline-block;
  background: #ffffff;
  color: #cd2122;
  font-size: 9px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .kl-testimonials-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .kl-tech-partners-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .kl-tech-logos-col {
    justify-content: flex-start;
    gap: 25px;
  }
}

/* ==========================================================================
   11. LATEST STORIES (Case Studies / News Cards)
   ========================================================================== */
.kl-stories-section {
  padding: 100px 0 80px 0;
  background: #ffffff;
}

.kl-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.kl-story-card {
  background: #ffffff;
  border: 1px solid var(--kl-border-light);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kl-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.kl-story-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.kl-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kl-story-card:hover .kl-story-thumb img {
  transform: scale(1.06);
}

.kl-story-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--kl-red);
  color: #ffffff;
  font-family: var(--kl-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.kl-story-body {
  padding: 20px;
}

.kl-story-meta {
  font-size: 11px;
  color: #8c919a;
  margin-bottom: 10px;
}

.kl-story-meta span {
  margin-right: 8px;
}

.kl-story-title {
  font-family: var(--kl-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #22252a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.kl-story-title a:hover {
  color: var(--kl-red);
}

.kl-story-excerpt {
  font-size: 12px;
  color: #6a7078;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   12. FULL-WIDTH CALL TO ACTION RED STRIP
   ========================================================================== */
.kl-cta-strip {
  background: var(--kl-red);
  color: #ffffff;
  padding: 45px 0;
}

.kl-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.kl-cta-text h3 {
  font-family: var(--kl-font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.kl-cta-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.kl-cta-strip-btn {
  background: #ffffff;
  color: var(--kl-red);
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 2px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.kl-cta-strip-btn:hover {
  background: #111417;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   13. MULTI-COLUMN KALLYAS FOOTER
   ========================================================================== */
.kl-footer {
  background: #181b1f;
  color: #92979e;
  font-size: 13px;
  padding: 70px 0 0 0;
}

.kl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 50px;
}

.kl-footer-col h4 {
  font-family: var(--kl-font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kl-footer-about-text {
  font-size: 12px;
  line-height: 1.7;
  color: #888d94;
  margin-bottom: 18px;
}

.kl-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kl-footer-links li a {
  font-size: 12px;
  color: #8c9199;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kl-footer-links li a:hover {
  color: #ffffff;
}

.kl-footer-newsletter p {
  font-size: 12px;
  color: #888d94;
  margin-bottom: 14px;
}

.kl-newsletter-form {
  display: flex;
  gap: 6px;
}

.kl-newsletter-form input {
  flex: 1;
  background: #23272d;
  border: 1px solid #33383f;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 12px;
  border-radius: 2px;
  outline: none;
}

.kl-newsletter-form button {
  background: var(--kl-red);
  color: #ffffff;
  border: none;
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.kl-newsletter-form button:hover {
  background: var(--kl-red-hover);
}

.kl-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kl-footer-contact-list li {
  font-size: 12px;
  color: #8c9199;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.kl-footer-contact-list li i {
  color: var(--kl-red);
  margin-top: 3px;
}

.kl-footer-contact-list li a:hover {
  color: #ffffff;
}

.kl-footer-copyright {
  background: #111316;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
  font-size: 12px;
}

.kl-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kl-copyright-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.kl-footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.kl-copyright-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kl-copyright-socials a {
  color: #8c9199;
  font-size: 13px;
}

.kl-copyright-socials a:hover {
  color: var(--kl-red);
}

/* ==========================================================================
   14. MODALS & DRAWERS (Quote Modal, Video Lightbox, Support Drawer)
   ========================================================================== */
.kl-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 15, 0.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.kl-modal-overlay.active {
  display: flex;
}

.kl-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: klModalFadeIn 0.3s ease-out;
}

@keyframes klModalFadeIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.kl-modal-header {
  background: var(--kl-dark-bg);
  color: #ffffff;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kl-modal-header h3 {
  font-family: var(--kl-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.kl-modal-close {
  background: none;
  border: none;
  color: #a0a5ab;
  font-size: 20px;
  cursor: pointer;
}

.kl-modal-close:hover {
  color: #ffffff;
}

.kl-modal-body {
  padding: 25px;
}

.kl-form-group {
  margin-bottom: 16px;
}

.kl-form-group label {
  display: block;
  font-family: var(--kl-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #33383f;
  margin-bottom: 6px;
}

.kl-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d5d8de;
  border-radius: 2px;
  font-family: var(--kl-font-sans);
  font-size: 13px;
  color: #22252a;
  outline: none;
  transition: border-color 0.2s;
}

.kl-form-control:focus {
  border-color: var(--kl-red);
}

/* Support Sliding Drawer */
.kl-support-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 340px;
  height: 100%;
  background: var(--kl-dark-bg);
  color: #ffffff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  z-index: 1001;
  transition: right 0.35s ease-in-out;
  padding: 30px 25px;
  overflow-y: auto;
}

.kl-support-drawer.active {
  right: 0;
}

.kl-support-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

/* Back to Top Button */
.kl-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: #23272d;
  color: #ffffff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.kl-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.kl-back-to-top:hover {
  background: var(--kl-red);
  transform: translateY(-3px);
}

/* ==========================================================================
   15. RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 991px) {
  .kl-header-inner {
    height: 70px;
  }

  .kl-nav-wrapper {
    display: none;
  }

  .kl-mobile-toggle {
    display: block;
  }

  .kl-slide-title {
    font-size: 32px;
  }

  .kl-callout-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .kl-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kl-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kl-process-split-grid {
    grid-template-columns: 1fr;
  }

  .kl-about-cards-grid {
    grid-template-columns: 1fr;
  }

  .kl-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .kl-stories-grid {
    grid-template-columns: 1fr;
  }

  .kl-cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .kl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .kl-topbar {
    display: none;
  }

  .kl-main-header {
    top: 0;
  }

  .kl-slide-title {
    font-size: 24px;
  }

  .kl-slide-btns {
    flex-direction: column;
  }

  .kl-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .kl-footer-grid {
    grid-template-columns: 1fr;
  }

  .kl-copyright-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
