/* =========================================================
   Cool Touch — Home Page Modern Redesign (2026)
   Scoped to body.home-page only. Content unchanged.
   ========================================================= */

:root {
  --ct-ink: #0f1218;
  --ct-ink-soft: #2a303c;
  --ct-muted: #6b7280;
  --ct-line: rgba(15, 18, 24, 0.08);
  --ct-surface: #ffffff;
  --ct-surface-2: #f6f7f9;
  --ct-accent: #0f1218;
  --ct-accent-hover: #1c2430;
  --ct-radius: 16px;
  --ct-radius-sm: 10px;
  --ct-shadow: 0 12px 40px rgba(15, 18, 24, 0.08);
  --ct-shadow-hover: 0 20px 50px rgba(15, 18, 24, 0.12);
  --ct-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ct-duration: 0.7s;
  --ct-header-h: 0px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.home-page {
  color: var(--ct-ink-soft);
  background: var(--ct-surface);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-page .container {
  max-width: 1180px;
  width: 100%;
}

/* ---------- Scroll progress ---------- */
.ct-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 10000;
  background: var(--ct-ink);
  transform-origin: left center;
  pointer-events: none;
}

/* ---------- Reveal system ---------- */
.home-page .ct-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--ct-duration) var(--ct-ease),
    transform var(--ct-duration) var(--ct-ease);
  will-change: opacity, transform;
}

.home-page .ct-reveal.is-inview {
  opacity: 1;
  transform: none;
}

.home-page .ct-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity var(--ct-duration) var(--ct-ease),
    transform var(--ct-duration) var(--ct-ease);
}

.home-page .ct-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity var(--ct-duration) var(--ct-ease),
    transform var(--ct-duration) var(--ct-ease);
}

.home-page .ct-reveal-left.is-inview,
.home-page .ct-reveal-right.is-inview {
  opacity: 1;
  transform: none;
}

.home-page .ct-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity var(--ct-duration) var(--ct-ease),
    transform var(--ct-duration) var(--ct-ease);
}

.home-page .ct-reveal-scale.is-inview {
  opacity: 1;
  transform: none;
}

.home-page .ct-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.home-page .ct-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.home-page .ct-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.home-page .ct-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.home-page .ct-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.home-page .ct-stagger > *:nth-child(6) { transition-delay: 0.4s; }

.home-page .ct-img-reveal {
  overflow: hidden;
  border-radius: var(--ct-radius);
  position: relative;
}

.home-page .ct-img-reveal img,
.home-page .ct-img-reveal video {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.08);
  transition: transform 1.1s var(--ct-ease), opacity 0.8s var(--ct-ease);
  opacity: 0.85;
}

.home-page .ct-img-reveal.is-inview img,
.home-page .ct-img-reveal.is-inview video,
.home-page .is-inview .ct-img-reveal img,
.home-page .is-inview .ct-img-reveal video {
  transform: scale(1);
  opacity: 1;
}

/* ---------- Typography / section headers ---------- */
.home-page .section-header {
  margin-bottom: 48px;
}

.home-page .section-header h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ct-ink);
  line-height: 1.15;
  margin-bottom: 8px;
}

.home-page .section-header h2:first-child {
  font-size: clamp(13px, 1.1vw, 14px);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ct-muted);
  margin-bottom: 14px;
}

.home-page .section-header h2 span {
  display: block;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--ct-ink);
  letter-spacing: -0.03em;
  background: none;
  -webkit-text-fill-color: unset;
}

.home-page .section-header h2 span.ct-grad,
.home-page .ct-services .section-header h2 .ct-grad,
.home-page .ct-home-contact-intro h2 .ct-grad,
.home-page .ct-offer h2 .ct-grad,
.home-page .ct-grad {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  background: linear-gradient(105deg, #facc15 0%, #84cc16 45%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-page .section-header h2 span:empty,
.home-page .section-header h2:has(> span:empty) {
  display: none;
}

.home-page .section-header p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.home-page .about .section-header p,
.home-page .service .section-header p {
  margin-left: 0;
}

.home-page .padding-tb {
  padding: 100px 0;
}

/* ---------- Buttons ---------- */
.home-page .btn,
.home-page .btn.btn-link,
.home-page a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--ct-accent) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none !important;
  overflow: hidden;
  transition:
    transform 0.35s var(--ct-ease),
    background 0.35s var(--ct-ease),
    color 0.35s var(--ct-ease),
    border-color 0.35s var(--ct-ease),
    box-shadow 0.35s var(--ct-ease) !important;
  will-change: transform;
}

.home-page .btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg) translateX(0);
  transition: transform 0.35s var(--ct-ease);
  opacity: 0.9;
}

.home-page .btn:hover,
.home-page .btn:focus {
  background: var(--ct-accent-hover) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 18, 24, 0.18) !important;
}

.home-page .btn:hover::after {
  transform: rotate(45deg) translateX(3px);
}

.home-page .btn.ct-btn-outline {
  background: transparent !important;
  color: var(--ct-ink) !important;
  border-color: var(--ct-line);
}

.home-page .btn.ct-btn-outline:hover {
  background: var(--ct-ink) !important;
  color: #fff !important;
  border-color: var(--ct-ink);
}

.home-page .btn.magnetic {
  transition:
    transform 0.2s var(--ct-ease),
    background 0.35s var(--ct-ease),
    box-shadow 0.35s var(--ct-ease) !important;
}

/* ---------- Header / Nav ---------- */
.home-page .header-section {
  position: relative;
  z-index: 1000;
}

.home-page .header-section.ct-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.home-page .header-section .header-top {
  background: var(--ct-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    opacity 0.35s var(--ct-ease),
    transform 0.35s var(--ct-ease),
    background 0.35s var(--ct-ease),
    max-height 0.35s var(--ct-ease),
    padding 0.35s var(--ct-ease);
}

.home-page.ct-nav-transparent .header-section .header-top {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home-page .header-section .header-top .htop-information li,
.home-page .header-section .header-top .htop-right ul li a {
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.92;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.home-page .header-section .header-top .htop-right ul li a:hover {
  opacity: 1;
  color: #fff;
}

.home-page .header-section .header-bottom {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ct-line);
  transition:
    background 0.35s var(--ct-ease),
    box-shadow 0.35s var(--ct-ease),
    border-color 0.35s var(--ct-ease);
}

/* Transparent header (over hero) */
.home-page.ct-nav-transparent .header-section .header-bottom {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none !important;
}

.home-page.ct-nav-transparent .primary-menu .main-menu > li > a {
  color: rgba(255, 255, 255, 0.92) !important;
}

.home-page.ct-nav-transparent .primary-menu .main-menu > li > a::after {
  background: #fff;
}

.home-page.ct-nav-transparent .primary-menu .main-menu > li > a:hover,
.home-page.ct-nav-transparent .primary-menu .main-menu > li > a.active {
  color: #fff !important;
}

.home-page.ct-nav-transparent .header-section .logo img {
  filter: none;
}

.home-page .header-section .header-bottom.menu-fixed,
.home-page:not(.ct-nav-transparent) .header-section .header-bottom {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 18, 24, 0.08) !important;
  border-bottom-color: transparent;
}

.home-page .header-section .header-bottom.menu-fixed .logo img,
.home-page:not(.ct-nav-transparent) .header-section .logo img {
  filter: none;
}

.home-page .header-section .header-bottom .primary-menu {
  width: 100%;
  background: transparent;
  box-shadow: none !important;
}

.home-page .header-section .header-bottom .menu-area {
  width: 100%;
  padding: 4px 0;
}

.home-page .header-section .logo img {
  max-height: 44px;
  width: auto;
  transition: transform 0.35s var(--ct-ease), filter 0.35s var(--ct-ease);
  border-radius: 4px;
}

.home-page .header-section .logo:hover img {
  transform: scale(1.03);
}

.home-page .primary-menu .main-menu > li > a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  color: var(--ct-ink-soft) !important;
  padding: 28px 16px !important;
  transition: color 0.3s ease;
}

.home-page .primary-menu .main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 1.5px;
  background: var(--ct-ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ct-ease);
}

.home-page .primary-menu .main-menu > li > a:hover,
.home-page .primary-menu .main-menu > li > a.active {
  color: var(--ct-ink) !important;
}

.home-page .primary-menu .main-menu > li > a:hover::after,
.home-page .primary-menu .main-menu > li > a.active::after {
  transform: scaleX(1);
}

/* Header entrance */
.home-page .header-section {
  animation: ctHeaderIn 0.8s var(--ct-ease) both;
}

@keyframes ctHeaderIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 991px) {
  .home-page {
    --ct-drawer-pad: 20px;
    --ct-drawer-w: 300px;
    --ct-mobile-header-h: 56px;
  }

  /* Never show desktop header on mobile — prevents white gap bands */
  .home-page .header-section {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .home-page .mobile-menu {
    position: static;
    z-index: 1200;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .home-page .mobile-menu .mobile-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    z-index: 1300 !important;
    margin: 0 !important;
    padding: 0 14px !important;
    height: var(--ct-mobile-header-h) !important;
    min-height: var(--ct-mobile-header-h) !important;
    max-height: var(--ct-mobile-header-h) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #000000 !important;
    background-color: #000000 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35) !important;
    box-sizing: border-box !important;
    transform: none !important;
  }

  .home-page .mobile-menu .mobile-header .header-logo,
  .home-page .mobile-menu .mobile-header .logo {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
  }

  .home-page .mobile-menu .mobile-header .logo img {
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
    filter: none !important;
    display: block !important;
    margin: 0 !important;
  }

  .home-page .mobile-menu .header-bar {
    position: relative !important;
    top: auto !important;
    width: 24px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    cursor: pointer;
    display: block !important;
  }

  .home-page .mobile-menu .header-bar span {
    background: #ffffff !important;
    height: 2px !important;
    width: 100% !important;
    border-radius: 2px;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    margin: 0 !important;
  }

  .home-page .mobile-menu .header-bar span:nth-child(1) { top: 0 !important; margin-top: 0 !important; }
  .home-page .mobile-menu .header-bar span:nth-child(2) { top: 8px !important; margin-top: 0 !important; opacity: 1 !important; }
  .home-page .mobile-menu .header-bar span:nth-child(3) { top: 16px !important; margin-top: 0 !important; }

  .home-page .mobile-menu .header-bar.close span:nth-child(1) {
    top: 8px !important;
    transform: rotate(-45deg) !important;
    margin-top: 0 !important;
  }
  .home-page .mobile-menu .header-bar.close span:nth-child(2) { opacity: 0 !important; }
  .home-page .mobile-menu .header-bar.close span:nth-child(3) {
    top: 8px !important;
    transform: rotate(45deg) !important;
    margin-top: 0 !important;
  }

  .home-page .mobile-menu .menu,
  .home-page .menu {
    position: fixed !important;
    top: var(--ct-mobile-header-h) !important;
    left: 0 !important;
    width: var(--ct-drawer-w) !important;
    max-width: 85% !important;
    height: calc(100vh - var(--ct-mobile-header-h)) !important;
    height: calc(100dvh - var(--ct-mobile-header-h)) !important;
    min-height: calc(100vh - var(--ct-mobile-header-h)) !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    z-index: 1290 !important;
    transform: translate3d(-100%, 0, 0) !important;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s var(--ct-ease), visibility 0.35s var(--ct-ease) !important;
    box-sizing: border-box !important;
  }

  .home-page .mobile-menu .menu.open,
  .home-page .menu.open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .home-page .ct-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1280;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ct-ease), visibility 0.35s var(--ct-ease);
    display: block;
  }

  .home-page .ct-menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.home-page.ct-menu-open {
    overflow: hidden !important;
  }

  .home-page .mobile-menu .mobile-menu-area,
  .home-page .menu .mobile-menu-area {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .home-page .mobile-menu .mobile-menu-area-inner,
  .home-page .menu .mobile-menu-area .mobile-menu-area-inner,
  .home-page #scrollbar.mobile-menu-area-inner {
    width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 18px var(--ct-drawer-pad) 32px !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .home-page .menu .mobile-menu-area .mobile-menu-area-inner ul,
  .home-page .mobile-menu-area-inner ul {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }

  .home-page .mobile-menu-area-inner .m-menu { margin: 0 0 8px !important; }

  .home-page .mobile-menu-area-inner .m-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
  }

  .home-page .mobile-menu-area-inner .m-menu li a,
  .home-page .menu .mobile-menu-area .mobile-menu-area-inner ul.m-menu li a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    padding: 13px 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(15, 18, 24, 0.1) !important;
    color: var(--ct-ink) !important;
    text-align: left !important;
    text-transform: capitalize;
    line-height: 1.35 !important;
  }

  .home-page .mobile-menu-area-inner .m-menu li:last-child a {
    border-bottom: none !important;
  }

  .home-page .ct-mobile-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 16px 0 18px !important;
    padding: 16px 0 0 !important;
    border-top: 1px solid rgba(15, 18, 24, 0.1) !important;
  }

  .home-page .ct-mobile-contact-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: var(--ct-ink-soft) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    word-break: break-word;
  }

  .home-page .ct-mobile-contact-icon {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: #f3f4f6 !important;
    border: 1px solid rgba(15, 18, 24, 0.08) !important;
    color: var(--ct-ink) !important;
    font-size: 12px !important;
  }

  .home-page .ct-mobile-social,
  .home-page .mobile-menu-area-inner .social-link-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .home-page .ct-mobile-social li {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
  }

  .home-page .ct-mobile-social li a,
  .home-page .menu .mobile-menu-area .mobile-menu-area-inner ul.social-link-list li a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    color: #fff !important;
    font-size: 14px !important;
  }

  .home-page .ct-mobile-social li a.facebook { background: #1877f2 !important; }
  .home-page .ct-mobile-social li a.twitter-sm { background: #1da1f2 !important; }
  .home-page .ct-mobile-social li a.instagram { background: #e4405f !important; }
  .home-page .ct-mobile-social li a.linkedin { background: #0a66c2 !important; }
  .home-page .ct-mobile-social li a.youtube { background: #ff0000 !important; }

  /* Hero flush under overlay header — no white/black spacer bands */
  .home-page .slider-section.banner.style-1,
  .home-page .slider-section.banner.style-1.ct-hero {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: #000000 !important;
    overflow: hidden !important;
  }

  .home-page .ct-hero-shell,
  .home-page .banner.style-1 .carousel,
  .home-page .banner.style-1 .carousel-inner,
  .home-page .banner.style-1 .carousel-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .home-page .banner.style-1 .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .home-page .ct-gallery-stage,
  .home-page .ct-gallery-track {
    max-width: 100% !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .home-page .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-page a.scrollToTop,
  .home-page .scrollToTop {
    right: 16px !important;
  }

  .home-page .ct-reveal-left,
  .home-page .ct-reveal-right {
    transform: translateY(18px);
  }

  .home-page .ct-reveal-left.is-inview,
  .home-page .ct-reveal-right.is-inview {
    transform: none;
  }

  .home-page .ct-home-contact {
    overflow-x: hidden;
    width: 100%;
  }

  .home-page .ct-home-contact .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .home-page .ct-home-contact .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-page .ct-home-contact [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-page .ct-home-contact-intro {
    padding-right: 0 !important;
    margin-bottom: 24px;
  }

  .home-page .ct-home-contact-details li { align-items: center !important; }
  .home-page .ct-home-contact-details li:last-child { align-items: flex-start !important; }

  .home-page .ct-home-contact-form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 22px 16px !important;
    box-sizing: border-box !important;
    border-radius: 18px;
  }

  .home-page .ct-home-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .home-page .ct-field,
  .home-page .ct-field-full {
    min-width: 0 !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
  }

  .home-page .ct-home-contact-form input,
  .home-page .ct-home-contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .home-page .ct-home-contact-submit {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* ---------- Shared framed border system ---------- */
.home-page .ct-frame-card,
.home-page .ct-frame-media {
  position: relative;
  border: 1px solid rgba(15, 18, 24, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(15, 18, 24, 0.18), rgba(15, 18, 24, 0.04)) border-box;
  box-shadow: 0 10px 30px rgba(15, 18, 24, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s var(--ct-ease),
    box-shadow 0.35s var(--ct-ease),
    border-color 0.35s var(--ct-ease);
}

.home-page .ct-frame-card::before,
.home-page .ct-frame-media::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(15, 18, 24, 0.06);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.35s var(--ct-ease), inset 0.35s var(--ct-ease);
}

.home-page .ct-frame-card:hover,
.home-page .ct-frame-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(15, 18, 24, 0.12);
  border-color: rgba(15, 18, 24, 0.22);
}

.home-page .ct-frame-card:hover::before,
.home-page .ct-frame-media:hover::before {
  border-color: rgba(15, 18, 24, 0.12);
}

/* ---------- Banner / Hero (new slider only) ---------- */
/* Kill old theme banner fixed heights on the home page */
.home-page.banner.style-1,
.home-page .slider-section.banner.style-1,
.home-page .banner.style-1 {
  position: relative;
  overflow: hidden;
  background: #07090d;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.home-page .ct-hero-shell {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
}

.home-page .ct-hero-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.15);
  animation: ctFrameIn 1s var(--ct-ease) 0.45s forwards;
}

.home-page .ct-hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.home-page .ct-frame-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  z-index: 5;
}

.home-page .ct-frame-corner.ct-tl {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 14px;
}

.home-page .ct-frame-corner.ct-tr {
  top: -1px;
  right: -1px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 14px;
}

.home-page .ct-frame-corner.ct-bl {
  bottom: -1px;
  left: -1px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 14px;
}

.home-page .ct-frame-corner.ct-br {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 14px;
}

@keyframes ctFrameIn {
  to { opacity: 1; }
}

.home-page .banner.style-1 .carousel,
.home-page .banner.style-1 .carousel.slide,
.home-page .banner.style-1 .carousel-inner {
  position: relative !important;
  border-radius: 0;
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 620px !important;
  max-height: none !important;
  background: #07090d;
}

.home-page .banner.style-1 .carousel-item {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 0;
  overflow: hidden;
  background: #07090d;
}

/* Fade transition only — no old slide peek */
.home-page .banner.style-1 .carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.55s var(--ct-ease) !important;
  transform: none !important;
  z-index: 1;
}

.home-page .banner.style-1 .carousel-fade .carousel-item.active,
.home-page .banner.style-1 .carousel-fade .carousel-item-next.carousel-item-left,
.home-page .banner.style-1 .carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1 !important;
  transform: none !important;
  z-index: 2;
}

.home-page .banner.style-1 .carousel-fade .active.carousel-item-left,
.home-page .banner.style-1 .carousel-fade .active.carousel-item-right {
  opacity: 0 !important;
  transform: none !important;
}

.home-page .banner.style-1 .carousel-fade .carousel-item-next,
.home-page .banner.style-1 .carousel-fade .carousel-item-prev,
.home-page .banner.style-1 .carousel-fade .carousel-item.active,
.home-page .banner.style-1 .carousel-fade .active.carousel-item-left,
.home-page .banner.style-1 .carousel-fade .active.carousel-item-prev,
.home-page .banner.style-1 .carousel-fade .carousel-item-next.carousel-item-left,
.home-page .banner.style-1 .carousel-fade .carousel-item-prev.carousel-item-right {
  transform: translateX(0) !important;
}

.home-page .banner.style-1 .carousel-item > img,
.home-page .banner.style-1 .carousel-item img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
  transform: none !important;
}

.home-page .banner.style-1 .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 18, 24, 0.14) 0%,
    rgba(15, 18, 24, 0.02) 45%,
    rgba(15, 18, 24, 0.28) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Hide ALL old theme arrow markup */
.home-page .banner.style-1 .carousel-control,
.home-page .banner.style-1 .carousel.slide .carousel-control,
.home-page .banner.style-1 .carousel-control.left,
.home-page .banner.style-1 .carousel-control.right,
.home-page .banner.style-1 .carousel.slide .carousel-inner .carousel-control {
  display: none !important;
}

/* New arrows — fixed size, pinned center (no jump on click/slide) */
.home-page .banner.style-1 .carousel-control-prev,
.home-page .banner.style-1 .carousel-control-next {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 15 !important;
  text-decoration: none !important;
  transform: translateY(-50%) !important;
  text-shadow: none !important;
  filter: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.home-page .banner.style-1 .carousel-control-prev {
  left: 12px !important;
  right: auto !important;
}

.home-page .banner.style-1 .carousel-control-next {
  right: 12px !important;
  left: auto !important;
}

.home-page .banner.style-1 .carousel-control-prev:hover,
.home-page .banner.style-1 .carousel-control-next:hover,
.home-page .banner.style-1 .carousel-control-prev:focus,
.home-page .banner.style-1 .carousel-control-next:focus,
.home-page .banner.style-1 .carousel-control-prev:active,
.home-page .banner.style-1 .carousel-control-next:active {
  opacity: 1 !important;
  outline: none !important;
  background: transparent !important;
  background-image: none !important;
  transform: translateY(-50%) !important;
}

.home-page .banner.style-1 .carousel-control-prev-icon,
.home-page .banner.style-1 .carousel-control-next-icon,
.home-page .banner.style-1 .carousel-control-prev::before,
.home-page .banner.style-1 .carousel-control-next::before,
.home-page .banner.style-1 .carousel-control-prev::after,
.home-page .banner.style-1 .carousel-control-next::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.home-page .banner.style-1 .ct-carousel-btn {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #ffffff !important;
  line-height: 1 !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transform: none !important;
  position: static !important;
  flex-shrink: 0 !important;
}

.home-page .banner.style-1 .ct-carousel-btn i,
.home-page .banner.style-1 .ct-carousel-btn .fa {
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin: 0 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .banner.style-1 .carousel-control-prev:hover .ct-carousel-btn,
  .home-page .banner.style-1 .carousel-control-next:hover .ct-carousel-btn {
    background: #ffffff !important;
    border-color: #ffffff !important;
  }

  .home-page .banner.style-1 .carousel-control-prev:hover .ct-carousel-btn i,
  .home-page .banner.style-1 .carousel-control-next:hover .ct-carousel-btn i {
    color: #000000 !important;
  }
}

@media (max-width: 1199px) {
  .home-page .banner.style-1 .carousel,
  .home-page .banner.style-1 .carousel.slide,
  .home-page .banner.style-1 .carousel-inner {
    height: min(78vh, 720px) !important;
    min-height: 480px !important;
  }
}

@media (max-width: 991px) {
  .home-page .banner.style-1 .carousel,
  .home-page .banner.style-1 .carousel.slide,
  .home-page .banner.style-1 .carousel-inner {
    height: min(58vh, 420px) !important;
    min-height: 280px !important;
    max-height: 420px !important;
  }

  .home-page .banner.style-1 .carousel-control-prev,
  .home-page .banner.style-1 .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
  }

  .home-page .banner.style-1 .carousel-control-prev {
    left: 10px !important;
  }

  .home-page .banner.style-1 .carousel-control-next {
    right: 10px !important;
  }

  .home-page .banner.style-1 .ct-carousel-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
  }

  .home-page .ct-hero-frame,
  .home-page .ct-frame-corner {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .home-page .banner.style-1 .carousel,
  .home-page .banner.style-1 .carousel.slide,
  .home-page .banner.style-1 .carousel-inner {
    height: min(52vh, 360px) !important;
    min-height: 240px !important;
    max-height: 360px !important;
  }

  .home-page .banner.style-1 .carousel-control-prev,
  .home-page .banner.style-1 .carousel-control-next,
  .home-page .banner.style-1 .ct-carousel-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
}

/* ---------- About ---------- */
.home-page .about.style-2 {
  background: var(--ct-surface);
  position: relative;
}

.home-page .about.style-2::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 4px;
  height: 120px;
  background: var(--ct-ink);
  border-radius: 0 4px 4px 0;
}

.home-page .ct-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid var(--ct-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ct-ink);
  background: var(--ct-surface-2);
}

.home-page .ct-about-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-ink);
  animation: ctPulse 1.8s ease-in-out infinite;
}

@keyframes ctPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}

.home-page .about.style-2 .about-left {
  padding-right: 24px;
}

.home-page .about.style-2 .about-left .section-header {
  text-align: left;
}

.home-page .about.style-2 .video-thumb {
  background: var(--ct-surface-2);
}

.home-page .ct-video-frame {
  position: relative;
}

.home-page .about.style-2 .video-thumb.ct-frame-media {
  box-shadow: 0 18px 50px rgba(15, 18, 24, 0.14);
}

.home-page .ct-video-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 18, 24, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.home-page .about.style-2 .video-thumb video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--ct-radius);
  transition: transform 0.8s var(--ct-ease);
}

.home-page .about.style-2 .video-thumb:hover video {
  transform: scale(1.02);
}

.home-page .about.style-2 .section-wrapper .btn,
.home-page .about.style-2 .section-wrapper .btn.btn-link {
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

/* ---------- Marquee (existing phrases) ---------- */
.home-page .ct-marquee {
  overflow: hidden;
  background: var(--ct-ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  position: relative;
}

.home-page .ct-marquee::before,
.home-page .ct-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.home-page .ct-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ct-ink), transparent);
}

.home-page .ct-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ct-ink), transparent);
}

.home-page .ct-marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ctMarquee 38s linear infinite;
  will-change: transform;
}

.home-page .ct-marquee-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 28px;
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.home-page .ct-marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.home-page .ct-marquee:hover .ct-marquee-track {
  animation-play-state: paused;
}

@keyframes ctMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Products — glass showcase ---------- */
.home-page .product.padding-tb.ct-product-stage {
  background: #07090d !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-page .ct-product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 20%, rgba(255, 255, 255, 0.05), transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 70%, rgba(255, 255, 255, 0.04), transparent 65%);
}

.home-page .ct-product-header {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.home-page .ct-product-header h2,
.home-page .ct-product-header h2 span,
.home-page .ct-product-header p {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.home-page .ct-product-header h2:first-child {
  color: rgba(255, 255, 255, 0.55) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
}

.home-page .ct-product-header p {
  color: rgba(255, 255, 255, 0.62) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .ct-product-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.home-page .ct-product-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  background: #11151c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(36px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.8s var(--ct-ease),
    opacity 0.8s var(--ct-ease),
    box-shadow 0.4s ease;
}

.home-page .ct-product-stage.is-inview .ct-product-card.ct-product-anim,
.home-page .ct-product-stage.is-inview .ct-product-mini.ct-product-anim,
.home-page .ct-product-stage.is-inview .ct-product-cta.ct-product-anim {
  opacity: 1;
  transform: none;
}

.home-page .ct-product-card[data-product-delay="0"] { transition-delay: 0.08s; }
.home-page .ct-product-card[data-product-delay="1"] { transition-delay: 0.18s; }
.home-page .ct-product-card[data-product-delay="2"] { transition-delay: 0.28s; }

.home-page .ct-product-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
  position: relative;
  min-height: 420px;
}

.home-page .ct-product-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-page .ct-product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.9s var(--ct-ease);
  max-height: none !important;
}

.home-page .ct-product-stage.is-inview .ct-product-card-media img {
  transform: scale(1);
}

.home-page .ct-product-card:hover .ct-product-card-media img {
  transform: scale(1.1);
}

.home-page .ct-product-card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.home-page .ct-product-glass {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(20, 22, 28, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(10px);
  opacity: 0.92;
  transition:
    transform 0.45s var(--ct-ease),
    background 0.35s ease,
    border-color 0.35s ease,
    opacity 0.35s ease;
}

.home-page .ct-product-stage.is-inview .ct-product-glass {
  transform: translateY(0);
}

.home-page .ct-product-card:hover .ct-product-glass {
  transform: translateY(-4px);
  background: rgba(20, 22, 28, 0.55);
  border-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.home-page .ct-product-num {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 2px;
}

.home-page .ct-product-glass-copy {
  min-width: 0;
  text-align: left;
}

.home-page .ct-product-glass-copy h4 {
  margin: 0 0 6px;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.home-page .ct-product-glass-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.home-page .ct-product-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 36px;
}

.home-page .ct-product-mini {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #11151c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition:
    transform 0.7s var(--ct-ease),
    opacity 0.7s var(--ct-ease),
    box-shadow 0.35s ease;
}

.home-page .ct-product-mini[data-product-delay="3"] { transition-delay: 0.36s; }
.home-page .ct-product-mini[data-product-delay="4"] { transition-delay: 0.44s; }
.home-page .ct-product-mini[data-product-delay="5"] { transition-delay: 0.52s; }
.home-page .ct-product-mini[data-product-delay="6"] { transition-delay: 0.6s; }

.home-page .ct-product-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ct-ease);
}

.home-page .ct-product-mini:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 16px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px) scale(1);
}

.home-page .ct-product-mini:hover img {
  transform: scale(1.08);
}

.home-page .ct-product-stage .ct-product-cta {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 0.7s var(--ct-ease),
    opacity 0.7s var(--ct-ease),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease !important;
}

.home-page .ct-product-cta[data-product-delay="7"] { transition-delay: 0.7s; }

.home-page .ct-product-stage .ct-product-cta:hover {
  background: #fff !important;
  color: var(--ct-ink) !important;
  border-color: #fff !important;
}

.home-page .product .post-item-inner {
  background: var(--ct-surface);
  padding: 28px 20px;
  margin-bottom: 24px;
}

.home-page .product .post-thumb img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
}

/* ---------- Offer ---------- */
.home-page .offer-section.ct-offer {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 12% 50%, rgba(62, 120, 96, 0.18), transparent 58%),
    radial-gradient(ellipse 55% 70% at 88% 40%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(145deg, #0c0e12 0%, #141820 48%, #0a0c10 100%) !important;
}

.home-page .ct-offer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 68%);
  pointer-events: none;
  filter: blur(10px);
}

.home-page .ct-offer-row {
  position: relative;
  z-index: 1;
}

.home-page .ct-offer-media {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  background: #11151c;
}

.home-page .ct-offer-media img {
  display: block;
  width: 100%;
  height: min(460px, 58vw);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1s var(--ct-ease);
}

.home-page .ct-offer-media:hover img {
  transform: scale(1.07);
}

.home-page .ct-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 10, 14, 0.35) 100%);
  pointer-events: none;
}

.home-page .ct-offer-media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(12, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-page .ct-offer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 12px 0 12px 28px;
  color: #fff;
  text-align: left !important;
}

.home-page .ct-offer-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.home-page .ct-offer-copy h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff !important;
  max-width: 11ch !important;
  margin: 0 0 18px !important;
}

.home-page .ct-offer-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dff5e8;
  background: rgba(62, 120, 96, 0.22);
  border: 1px solid rgba(140, 200, 170, 0.35);
  animation: ctOfferBadge 2.8s ease-in-out infinite;
}

@keyframes ctOfferBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(140, 200, 170, 0); }
  50% { box-shadow: 0 0 0 8px rgba(140, 200, 170, 0.08); }
}

.home-page .ct-offer-text {
  margin: 0 0 32px;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.home-page .ct-offer-btn.btn,
.home-page .offer-section .offer-content .btn.ct-offer-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #fff !important;
  color: var(--ct-ink) !important;
  border: 0 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28) !important;
}

.home-page .ct-offer-btn.btn i {
  font-size: 12px;
  transition: transform 0.3s var(--ct-ease);
}

.home-page .ct-offer-btn.btn:hover,
.home-page .offer-section .offer-content .btn.ct-offer-btn:hover {
  background: #f2f4f7 !important;
  color: var(--ct-ink) !important;
  transform: translateY(-3px);
}

.home-page .ct-offer-btn.btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .home-page .offer-section.ct-offer {
    padding: 72px 0;
  }

  .home-page .ct-offer-copy {
    padding: 36px 0 0;
  }

  .home-page .ct-offer-copy h2 {
    max-width: none !important;
  }

  .home-page .ct-offer-media img {
    height: min(360px, 72vw);
  }

  .home-page .ct-offer-glow {
    opacity: 0.5;
    right: -120px;
  }
}

@media (max-width: 575px) {
  .home-page .offer-section.ct-offer {
    padding: 56px 0;
  }

  .home-page .ct-offer-copy {
    padding-top: 28px;
  }

  .home-page .ct-offer-text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .home-page .ct-offer-media {
    border-radius: 18px;
  }
}

/* ---------- Services ---------- */
.home-page .service.padding-tb.ct-services {
  position: relative;
  background: linear-gradient(165deg, #f7f8fb 0%, #ffffff 42%, #f3f5f9 100%);
  overflow: hidden;
}

.home-page .ct-services-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 12% 20%, rgba(15, 18, 24, 0.05), transparent 70%),
    radial-gradient(ellipse 45% 35% at 88% 75%, rgba(59, 130, 246, 0.06), transparent 70%);
}

.home-page .ct-services .container {
  position: relative;
  z-index: 1;
}

.home-page .ct-services .service-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .home-page .ct-services .service-left {
    position: sticky;
    top: 120px;
  }
}

.home-page .service .service-left .section-header {
  text-align: left;
  position: relative;
  z-index: auto;
  max-width: none;
  width: 100%;
  margin: 0 0 24px !important;
}

.home-page .ct-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px !important;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 18, 24, 0.06);
  color: var(--ct-muted) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1 !important;
}

.home-page .service .service-left .section-header h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  margin: 0 0 18px !important;
  max-width: 14ch;
  position: relative;
}

.home-page .service .service-left .section-header p:not(.ct-services-eyebrow) {
  position: relative;
  display: block;
  max-width: 36ch;
  margin: 0 !important;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ct-muted);
}

.home-page .ct-services-points {
  list-style: none !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 36ch;
  position: relative;
  z-index: 1;
}

.home-page .ct-services-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 500;
  color: var(--ct-ink-soft);
  line-height: 1.4;
}

.home-page .ct-services-points i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ct-line);
  color: var(--ct-ink);
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(15, 18, 24, 0.05);
  flex-shrink: 0;
}

.home-page .ct-services-cta {
  margin-top: 0 !important;
  position: relative;
}

.home-page .service .service-right {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.home-page .service .service-right .post-item,
.home-page .ct-service-card {
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  max-width: none !important;
}

.home-page .ct-service-card .post-inner {
  position: relative;
  height: 100%;
  margin: 0 !important;
  padding: 28px 24px 26px !important;
  text-align: left !important;
  border-radius: 22px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(15, 18, 24, 0.1), rgba(15, 18, 24, 0.02), rgba(59, 130, 246, 0.12)) border-box !important;
  border: 1px solid transparent !important;
  box-shadow: 0 10px 30px rgba(15, 18, 24, 0.05) !important;
  overflow: hidden;
  transition:
    transform 0.45s var(--ct-ease),
    box-shadow 0.45s var(--ct-ease),
    border-color 0.45s ease !important;
}

.home-page .ct-service-card .post-inner::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 18, 24, 0.06), transparent 68%);
  pointer-events: none;
  transition: transform 0.5s var(--ct-ease), opacity 0.5s ease;
  opacity: 0.7;
}

.home-page .ct-service-card:nth-child(2) .post-inner::before {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 68%);
}

.home-page .ct-service-card:nth-child(3) .post-inner::before {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 68%);
}

.home-page .ct-service-card:nth-child(4) .post-inner::before {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 68%);
}

.home-page .ct-service-card:hover .post-inner {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 18, 24, 0.12) !important;
}

.home-page .ct-service-card:hover .post-inner::before {
  transform: scale(1.35) translate(-10px, -10px);
  opacity: 1;
}

.home-page .ct-service-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(15, 18, 24, 0.28);
}

.home-page .ct-service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(160deg, #f4f5f7, #ffffff);
  border: 1px solid rgba(15, 18, 24, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(15, 18, 24, 0.06);
  transition: transform 0.4s var(--ct-ease), background 0.4s ease;
}

.home-page .ct-service-card:hover .ct-service-icon {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(160deg, #151821, #2a3140);
}

.home-page .ct-service-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain;
  margin: 0 !important;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.home-page .ct-service-card:hover .ct-service-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

.home-page .ct-service-card .post-content h4,
.home-page .ct-service-card .post-content h4 a {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ct-ink) !important;
  line-height: 1.3;
  margin: 0 0 10px !important;
  text-decoration: none;
}

.home-page .ct-service-card .post-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ct-muted);
  max-width: 28ch;
}

.home-page .ct-service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 22px;
  border-radius: 50%;
  border: 1px solid rgba(15, 18, 24, 0.1);
  color: var(--ct-ink);
  font-size: 12px;
  background: #fff;
  transition: transform 0.35s var(--ct-ease), background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.home-page .ct-service-card:hover .ct-service-arrow {
  transform: translateX(4px);
  background: #151821;
  border-color: #151821;
  color: #fff;
}

.home-page .ct-service-card:nth-child(even) {
  margin-top: 18px;
}

.home-page .ct-service-card:nth-child(odd) {
  margin-bottom: 18px;
}

/* ---------- Gallery coverflow ---------- */
.home-page .ct-gallery-coverflow {
  background: #ffffff;
  overflow: hidden;
}

.home-page .ct-gallery-coverflow .section-header {
  text-align: center;
  margin-bottom: 28px;
}

.home-page .ct-gallery-stage {
  max-width: 1100px;
  margin: 0 auto;
}

.home-page .ct-gallery-track {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  margin: 0 -12px;
  user-select: none;
  touch-action: pan-y;
}

.home-page .ct-gallery-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(300px, 58vw);
  height: min(380px, 72vw);
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 22px !important;
  overflow: hidden;
  cursor: pointer;
  background: #e8eaed !important;
  color: inherit !important;
  font-weight: inherit !important;
  box-shadow: 0 18px 50px rgba(15, 18, 24, 0.14) !important;
  text-shadow: none !important;
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  z-index: 1;
  transition:
    transform 0.55s var(--ct-ease),
    opacity 0.55s var(--ct-ease),
    box-shadow 0.55s var(--ct-ease),
    filter 0.55s ease;
  filter: saturate(0.92);
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
}

.home-page .ct-gallery-card:hover,
.home-page .ct-gallery-card:focus {
  background: #e8eaed !important;
  color: inherit !important;
  outline: none;
}

.home-page .ct-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.home-page .ct-gallery-card.is-active {
  box-shadow: 0 28px 70px rgba(15, 18, 24, 0.22);
  filter: saturate(1.05);
  cursor: zoom-in;
}

.home-page .ct-gallery-card.is-side {
  cursor: zoom-in;
}

/* Gallery lightbox (click to view) */
body.ct-gallery-lightbox-open {
  overflow: hidden;
}

.ct-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 56px 72px;
  background: rgba(10, 12, 16, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ct-gallery-lightbox.is-open {
  display: flex;
}

.ct-gallery-lightbox[hidden] {
  display: none !important;
}

.ct-gallery-lightbox-figure {
  margin: 0;
  max-width: min(920px, 92vw);
  max-height: min(86vh, 920px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.ct-gallery-lightbox-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(920px, 92vw);
  max-height: min(86vh, 920px);
  object-fit: contain;
  background: #111;
}

.ct-gallery-lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-size: 28px;
  line-height: 1;
  font-weight: 400 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ct-gallery-lightbox-close:hover,
.ct-gallery-lightbox-close:focus {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
  outline: none;
  transform: scale(1.04);
}

.ct-gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  font-weight: 500 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ct-gallery-lightbox-prev {
  left: max(12px, env(safe-area-inset-left));
}

.ct-gallery-lightbox-next {
  right: max(12px, env(safe-area-inset-right));
}

.ct-gallery-lightbox-nav:hover,
.ct-gallery-lightbox-nav:focus {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: #fff !important;
  outline: none;
}

@media (max-width: 767px) {
  .ct-gallery-lightbox {
    padding: 64px 16px 24px;
  }

  .ct-gallery-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .ct-gallery-lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 26px;
  }
}

.home-page .ct-gallery-card.is-side {
  pointer-events: auto;
}

.home-page .ct-gallery-card.is-hidden {
  pointer-events: none;
}

.home-page .ct-gallery-card:not(.is-active):hover {
  filter: saturate(1);
}

.home-page .ct-gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.home-page .ct-gallery-nav-btn {
  width: 48px;
  height: 48px;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(15, 18, 24, 0.18) !important;
  background: #fff !important;
  color: var(--ct-ink) !important;
  font-weight: 500 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: transform 0.25s var(--ct-ease), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-page .ct-gallery-nav-btn:hover,
.home-page .ct-gallery-nav-btn:focus {
  transform: translateY(-2px);
  border-color: rgba(15, 18, 24, 0.4) !important;
  background: #fff !important;
  color: var(--ct-ink) !important;
  box-shadow: 0 10px 24px rgba(15, 18, 24, 0.1) !important;
  outline: none;
}

.home-page .ct-gallery-nav-btn:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .home-page .ct-gallery-track {
    height: 360px;
  }

  .home-page .ct-gallery-card {
    width: min(250px, 56vw);
    height: min(320px, 68vw);
  }
}

@media (max-width: 767px) {
  .home-page .ct-gallery-track {
    height: 300px;
  }

  .home-page .ct-gallery-card {
    width: min(220px, 62vw);
    height: min(280px, 78vw);
    border-radius: 18px;
  }
}

/* ---------- Testimonials ---------- */
.home-page .testimonial.padding-tb.ct-testimonials {
  position: relative;
  overflow: hidden;
  background: #0e1014 !important;
  background-image: none !important;
  color: #fff;
}

.home-page .ct-testi-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 18% 20%, rgba(255, 255, 255, 0.07), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 70%, rgba(132, 204, 22, 0.08), transparent 65%),
    radial-gradient(ellipse 40% 35% at 70% 10%, rgba(251, 191, 36, 0.06), transparent 60%);
}

.home-page .ct-testimonials .container {
  position: relative;
  z-index: 1;
}

.home-page .ct-testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  margin-bottom: 40px;
}

.home-page .ct-testi-header h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  max-width: 14ch;
  flex: 1;
}

.home-page .ct-testi-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.home-page .ct-testi-nav {
  width: 48px;
  height: 48px;
  padding: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
  font-weight: 500 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none !important;
  text-shadow: none !important;
  transition: transform 0.3s var(--ct-ease), background 0.3s ease, border-color 0.3s ease;
}

.home-page .ct-testi-nav:hover,
.home-page .ct-testi-nav:focus {
  background: #fff !important;
  color: #0e1014 !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  outline: none;
}

.home-page .ct-testi-nav:active {
  transform: translateY(0);
}

.home-page .ct-testi-header h2 span,
.home-page .ct-grad {
  background: linear-gradient(105deg, #facc15 0%, #84cc16 45%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.home-page .ct-testi-slider {
  overflow: hidden;
  padding-bottom: 48px;
}

.home-page .ct-testi-card {
  height: 100%;
  min-height: 260px;
  padding: 28px 26px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ct-ease), border-color 0.4s ease, background 0.4s ease;
}

.home-page .ct-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.home-page .ct-testi-quote {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  font-weight: 400;
}

.home-page .ct-testi-card > p {
  margin: 0 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}

.home-page .ct-testi-meta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-page .ct-testi-meta strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.home-page .ct-testi-stars {
  display: flex;
  gap: 3px;
  color: #facc15;
  font-size: 12px;
}

.home-page .ct-testi-stars .far {
  color: rgba(250, 204, 21, 0.35);
}

.home-page .ct-testi-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 10px;
}

.home-page .ct-testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  margin: 0 !important;
  transition: width 0.35s var(--ct-ease), background 0.35s ease;
}

.home-page .ct-testi-pagination .swiper-pagination-bullet-active {
  width: 36px;
  background: linear-gradient(90deg, #84cc16, #facc15);
}

/* ---------- Home contact form ---------- */
.home-page .ct-home-contact {
  background: #f6f7f9;
  position: relative;
}

.home-page .ct-home-contact-intro {
  padding-right: 12px;
  margin-bottom: 28px;
}

.home-page .ct-home-contact-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 18, 24, 0.06);
  color: var(--ct-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.home-page .ct-home-contact-intro h2 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ct-ink);
  line-height: 1.15;
  margin: 0 0 16px;
}

.home-page .ct-home-contact-intro > p:not(.ct-home-contact-eyebrow) {
  margin: 0 0 28px;
  max-width: 36ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ct-muted);
}

.home-page .ct-home-contact-details {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: grid;
  gap: 16px;
}

.home-page .ct-home-contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-page .ct-home-contact-details li:last-child {
  align-items: flex-start;
}

.home-page .ct-home-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ct-line);
  color: var(--ct-ink);
  box-shadow: 0 8px 20px rgba(15, 18, 24, 0.05);
  flex-shrink: 0;
}

.home-page .ct-home-contact-details li:last-child .ct-home-contact-icon {
  margin-top: 2px;
}

.home-page .ct-home-contact-details strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ct-muted);
  margin-bottom: 4px;
}

.home-page .ct-home-contact-details a,
.home-page .ct-home-contact-details span {
  font-size: 15px;
  color: var(--ct-ink-soft);
  line-height: 1.5;
  text-decoration: none;
}

.home-page .ct-home-contact-details a:hover {
  color: var(--ct-ink);
}

.home-page .ct-home-contact-form {
  background: #fff;
  border: 1px solid rgba(15, 18, 24, 0.08);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(15, 18, 24, 0.06);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.home-page .ct-home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.home-page .ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  min-width: 0;
  max-width: 100%;
}

.home-page .ct-field-full {
  grid-column: 1 / -1;
}

.home-page .ct-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-ink-soft);
}

.home-page .ct-home-contact-form input,
.home-page .ct-home-contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(15, 18, 24, 0.12);
  border-radius: 14px;
  background: #f8f9fb;
  color: var(--ct-ink);
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: none;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-page .ct-home-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.home-page .ct-home-contact-form input:focus,
.home-page .ct-home-contact-form textarea:focus {
  border-color: rgba(15, 18, 24, 0.35);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 18, 24, 0.06);
}

.home-page .ct-home-contact-form input::placeholder,
.home-page .ct-home-contact-form textarea::placeholder {
  color: #9aa1ad;
}

.home-page .ct-home-contact-submit {
  min-width: 160px;
}

@media (max-width: 767px) {
  .home-page .ct-home-contact-form {
    padding: 22px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .home-page .ct-home-contact-grid {
    grid-template-columns: 1fr;
  }

  .home-page .ct-home-contact-details li {
    align-items: center;
  }

  .home-page .ct-home-contact-details li:last-child {
    align-items: flex-start;
  }

  .home-page .ct-home-contact-submit {
    width: 100%;
    min-width: 0;
  }
}

/* ---------- Footer (black) ---------- */
.home-page footer.ct-footer,
.home-page footer {
  background: #0a0a0a;
  color: #fff;
  border-top: none;
}

.home-page footer .footer-top {
  padding-top: 80px;
  padding-bottom: 50px;
}

@media (min-width: 1440px) {
  .home-page footer .footer-top {
    padding-top: 80px;
  }
}

.home-page .ct-footer-grid > [class*="col-"] {
  margin-bottom: 36px;
}

.home-page footer .ct-footer-about {
  text-align: left;
}

.home-page footer .footer-logo,
.home-page footer .footer-top .post-item .footer-logo {
  display: block !important;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 22px 0 !important;
  padding: 0 !important;
  text-align: left;
  line-height: 0;
}

.home-page footer .footer-logo img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  filter: none;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  display: block;
}

@media (max-width: 767px) {
  .home-page footer .footer-logo img {
    max-height: 48px;
  }
}

.home-page footer .ct-footer-about .post-title,
.home-page footer .ct-footer-about .post-title h3,
.home-page footer .ct-footer-about > p {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left;
}

.home-page footer .post-item > p,
.home-page .ct-footer-social-text {
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  max-width: 320px;
  margin: 0 0 18px;
}

.home-page footer .post-title h3 {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.home-page .ct-footer-links {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: grid;
  gap: 12px;
}

.home-page .ct-footer-links li {
  margin: 0;
}

.home-page .ct-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}

.home-page .ct-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.home-page .ct-footer-contact {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: grid;
  gap: 16px;
}

.home-page .ct-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.home-page .ct-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
}

.home-page .ct-footer-contact a,
.home-page .ct-footer-contact span:not(.ct-footer-icon) {
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
}

.home-page .ct-footer-contact a:hover {
  color: #fff;
}

.home-page .ct-footer-social {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .ct-footer-social li {
  margin: 0;
}

.home-page .ct-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s var(--ct-ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.home-page .ct-footer-social a:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

.home-page footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.home-page footer .footer-bottom {
  padding: 22px 0;
  background: #000000;
}

.home-page footer .footer-bottom p,
.home-page footer .footer-bottom a {
  color: #fff;
  font-size: 13px;
}

.home-page footer .footer-bottom a:hover {
  color: #fff;
}

/* ---------- Scroll to top ---------- */
.home-page a.scrollToTop,
.home-page .scrollToTop {
  position: fixed !important;
  right: 24px !important;
  z-index: 9999 !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #000000 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  line-height: 1 !important;
  overflow: hidden !important;
}

.home-page a.scrollToTop i,
.home-page .scrollToTop i,
.home-page a.scrollToTop i::before,
.home-page .scrollToTop i::before {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.home-page a.scrollToTop:hover,
.home-page .scrollToTop:hover,
.home-page a.scrollToTop:focus,
.home-page .scrollToTop:focus {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45) !important;
  transform: translateY(-4px);
  text-decoration: none !important;
}

.home-page a.scrollToTop:hover i,
.home-page .scrollToTop:hover i,
.home-page a.scrollToTop:hover i::before,
.home-page .scrollToTop:hover i::before,
.home-page a.scrollToTop:focus i,
.home-page .scrollToTop:focus i,
.home-page a.scrollToTop:focus i::before,
.home-page .scrollToTop:focus i::before {
  color: #000000 !important;
}

/* ---------- Card tilt (desktop JS) ---------- */
.home-page .ct-tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ct-ease);
  will-change: transform;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .home-page .padding-tb {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .home-page .slider-section.banner.style-1 {
    padding: 0 !important;
    height: auto !important;
    background: #000000 !important;
  }

  .home-page .ct-hero-shell {
    border-radius: 0;
  }

  .home-page .ct-hero-frame {
    display: none !important;
  }

  .home-page .ct-frame-corner {
    width: 16px;
    height: 16px;
  }

  .home-page .product.padding-tb.ct-product-stage {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .home-page .ct-product-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .home-page .ct-product-card,
  .home-page .ct-product-card-link {
    min-height: 340px;
  }

  .home-page .ct-product-glass-copy h4 {
    font-size: 15px;
  }

  .home-page .ct-product-glass-copy p {
    font-size: 12px;
  }

  .home-page .ct-product-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-page .padding-tb {
    padding: 70px 0;
  }

  .home-page .about.style-2 .about-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .home-page .ct-services .service-left {
    position: relative;
    top: auto;
    margin-bottom: 36px;
  }

  .home-page .service .service-left .section-header {
    position: relative;
    margin-bottom: 20px !important;
  }

  .home-page .service .service-left .section-header h2 {
    max-width: none;
  }

  .home-page .service .service-right {
    grid-template-columns: 1fr 1fr;
  }

  .home-page .ct-service-card:nth-child(even),
  .home-page .ct-service-card:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 0;
  }

  .home-page footer .footer-bottom .text-center {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .home-page .slider-section.banner.style-1 {
    padding: 0 !important;
    height: auto !important;
    background: #000000 !important;
  }

  .home-page .ct-hero-frame,
  .home-page .ct-hero-frame::before,
  .home-page .ct-frame-corner {
    display: none !important;
  }

  .home-page .product.padding-tb.ct-product-stage {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-page .ct-product-showcase {
    grid-template-columns: 1fr;
  }

  .home-page .ct-product-card,
  .home-page .ct-product-card-link {
    min-height: 300px;
  }

  .home-page .ct-product-glass {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .home-page .ct-product-glass-copy h4 {
    font-size: 16px;
  }

  .home-page .ct-product-glass-copy p {
    font-size: 13px;
  }

  .home-page .ct-frame-card::before,
  .home-page .ct-frame-media::before {
    inset: 6px;
  }

  .home-page .ct-marquee {
    padding: 12px 0;
  }

  .home-page .ct-marquee-track span {
    padding: 0 18px;
  }

  .home-page .ct-marquee-track span::after {
    margin-left: 18px;
  }

  .home-page .padding-tb {
    padding: 56px 0;
  }

  .home-page .section-header {
    margin-bottom: 32px;
  }

  .home-page .service .service-right {
    grid-template-columns: 1fr;
  }

  .home-page .ct-testi-header {
    margin-bottom: 28px;
    text-align: left;
    align-items: center;
    flex-wrap: wrap;
  }

  .home-page .ct-testi-header h2 {
    max-width: none;
  }

  .home-page .ct-testi-arrows {
    margin-bottom: 0;
  }

  .home-page .ct-testi-nav {
    width: 44px;
    height: 44px;
  }

  .home-page .ct-testi-card {
    min-height: 240px;
    padding: 24px 20px 20px;
  }

  .home-page .ct-testi-pagination {
    justify-content: center;
  }

  .home-page .product .post-item-inner {
    padding: 20px 16px;
  }

  .home-page footer .footer-top {
    padding-top: 56px;
  }

  .home-page footer .post-item {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .home-page .btn,
  .home-page a.btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .home-page .header-section .header-top .htop-information li {
    margin-right: 16px;
    font-size: 12px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-page .ct-reveal,
  .home-page .ct-reveal-left,
  .home-page .ct-reveal-right,
  .home-page .ct-reveal-scale,
  .home-page .ct-img-reveal img,
  .home-page .ct-img-reveal video,
  .home-page .header-section,
  .home-page .banner.style-1 .carousel-item > img,
  .home-page .ct-hero-frame,
  .home-page .ct-marquee-track,
  .home-page .ct-about-badge::before,
  .home-page .ct-product-card,
  .home-page .ct-product-mini,
  .home-page .ct-product-cta,
  .home-page .ct-product-glass,
  .home-page .ct-product-card-media img {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .home-page .btn:hover,
  .home-page .product .post-item-inner:hover,
  .home-page .ct-service-card:hover .post-inner,
  .home-page .ct-product-card:hover,
  .home-page .ct-product-mini:hover {
    transform: none;
  }

  .home-page .ct-service-card .post-inner,
  .home-page .ct-service-icon,
  .home-page .ct-service-arrow {
    transition: none !important;
  }

  .home-page .ct-gallery-card,
  .home-page .ct-gallery-nav-btn {
    transition: none !important;
  }
}

/* ===== Mobile menu over hero ===== */
@media (max-width: 991px) {
  .home-page .mobile-menu .menu {
    display: block !important;
  }

  .home-page .mobile-menu .menu:not(.open) {
    transform: translate3d(-100%, 0, 0) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .home-page .mobile-menu .menu.open {
    transform: translate3d(0, 0, 0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

