/* ============================================
   Code & Key - Custom Styles
   Primary: #c026d3 (Fuchsia/Magenta)
   Primary Light: #d946ef
   Primary Dark: #a21caf
   ============================================ */

/* --- Color Override Variables --- */
:root {
  --color-primary: #c026d3;
  --color-primary-light: #d946ef;
  --color-primary-dark: #a21caf;
  --color-primary-rgb: 192, 38, 211;
  --accent: #c026d3 !important;
  --ck-text: #1a1a1a;
  --ck-text-muted: #6b6b6b;
  --ck-card-bg: #ffffff;
  --ck-card-border: rgba(0, 0, 0, 0.08);
  --ck-input-bg: #f5f2f7;
  --ck-input-border: rgba(0, 0, 0, 0.1);
  --ck-input-text: #1a1a1a;
}

[color-scheme="dark"] {
  --ck-text: #f5f5f5;
  --ck-text-muted: #999999;
  --ck-card-bg: #1a1a1a;
  --ck-card-border: rgba(255, 255, 255, 0.06);
  --ck-input-bg: #1e1e1e;
  --ck-input-border: rgba(255, 255, 255, 0.1);
  --ck-input-text: #f5f5f5;
}

/* --- Accent color overrides --- */
.bg-accent {
  background-color: #c026d3 !important;
}

.btn-default:hover,
.btn-outline:hover {
  border-color: #c026d3;
}

::-webkit-scrollbar-thumb {
  background: #c026d3;
}

::selection {
  background: rgba(192, 38, 211, 0.3);
}

/* ==========================================
   HERO SECTION BACKGROUND
   ========================================== */
.mxd-hero-02.mxd-pinned-fullscreen {
  background-image: url('../img/banner-1.webp');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* Force readable text over the dark banner — light mode fix */
.mxd-hero-02 .t-bright,
.mxd-hero-02 .t-bright * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.mxd-hero-02 .t-muted,
.mxd-hero-02 .t-muted * {
  color: #d946ef !important;
  -webkit-text-fill-color: #d946ef !important;
}

.mxd-hero-02 .marquee__text {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.mxd-hero-02 .marquee__image svg,
.mxd-hero-02 .marquee__image svg path {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.mxd-hero-02 .mxd-paragraph__lists p,
.mxd-hero-02 .mxd-paragraph__lists li {
  color: rgba(255, 255, 255, 0.75) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.75) !important;
}

.mxd-hero-02 .mxd-paragraph__lists ul li::before,
.mxd-hero-02 .mxd-paragraph__lists ul li::marker {
  color: #d946ef !important;
}

.mxd-hero-02 .btn-rotating__text text,
.mxd-hero-02 .btn-rotating__text textPath {
  fill: #ffffff !important;
  color: #ffffff !important;
}

/* ==========================================
   HERO SCROLL CARD OVERLAYS
   ========================================== */

/* make the img not block overlay */
.mxd-hero-02-image__inner {
  position: relative;
}

.mxd-hero-02-image__inner > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.ck-card-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 1rem !important;
  margin: 0 !important;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.35) 50%,
    transparent 100%
  ) !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
  transition: background 0.4s ease !important;
  pointer-events: none;
}

.mxd-hero-02-image__inner h4.ck-card-overlay__title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 0.4rem !important;
  padding: 0 !important;
  line-height: 1.15 !important;
  font-family: inherit !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  transition: transform 0.4s ease, background 0.4s ease,
    -webkit-text-fill-color 0.4s ease !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
}

.mxd-hero-02-image__inner p.ck-card-overlay__desc {
  font-size: 1.5rem !important;
  line-height: 1.65 !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: max-height 0.45s ease, opacity 0.35s ease !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6) !important;
}

.mxd-hero-02-image__inner p.ck-card-overlay__desc::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, #e879f9, #a21caf);
  border-radius: 2px;
  margin-bottom: 0.55rem;
}

/* hover */
.mxd-hero-02-image__inner:hover .ck-card-overlay {
  background: linear-gradient(
    to top,
    rgba(162, 28, 175, 0.92) 0%,
    rgba(192, 38, 211, 0.5) 50%,
    rgba(162, 28, 175, 0.15) 100%
  ) !important;
}

.mxd-hero-02-image__inner:hover h4.ck-card-overlay__title {
  transform: translateY(-6px) !important;
  background: linear-gradient(135deg, #ffffff 0%, #f0abfc 60%, #e879f9 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
}

.mxd-hero-02-image__inner:hover p.ck-card-overlay__desc {
  max-height: 150px !important;
  opacity: 1 !important;
}

/* type-02 is the tall card - allow more desc space */
.mxd-hero-02-image__inner.type-02 .ck-card-overlay {
  padding: 1.5rem !important;
}

.mxd-hero-02-image__inner.type-02 h4.ck-card-overlay__title {
  font-size: 2.5rem !important;
}

.mxd-hero-02-image__inner.type-02 p.ck-card-overlay__desc {
  font-size: 1.5rem !important;
}

/* type-03 landscape - shorter card, compact text */
.mxd-hero-02-image__inner.type-03 h4.ck-card-overlay__title {
  font-size: 2.5rem !important;
}

.mxd-hero-02-image__inner.type-03 p.ck-card-overlay__desc {
  font-size: 1.5rem !important;
}

/* ==========================================
   SERVICES LIST DESCRIPTIONS
   ========================================== */
.ck-cpb-desc {
  font-size: 1.5rem;
  color: var(--ck-text-muted);
  line-height: 1.55;
  margin: 0.4rem 0 0;
  max-width: 520px;
}

/* ==========================================
   SERVICE DETAIL SECTIONS
   ========================================== */

/* --- Service Image --- */
.ck-service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.ck-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.ck-service-image:hover img {
  transform: scale(1.05);
}

.ck-service-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(162, 28, 175, 0.2) 0%,
    rgba(10, 10, 10, 0.25) 100%
  );
  z-index: 1;
}

.ck-service-image__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ck-service-image__badge i {
  font-size: 1rem;
}

/* --- Service Detail Cards --- */
.ck-service-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ck-service-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--ck-card-bg);
  border: 1px solid var(--ck-card-border);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ck-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ck-service-card:hover {
  border-color: rgba(192, 38, 211, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 38, 211, 0.08);
}

.ck-service-card:hover::before {
  opacity: 1;
}

.ck-service-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c026d3, #a21caf);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.ck-service-card__body {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ck-service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ck-text);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.ck-service-card__desc {
  font-size: 0.88rem;
  color: var(--ck-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- Service Tag Grid (for SEO / compact items) --- */
.ck-service-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.ck-service-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--ck-card-bg);
  border: 1px solid var(--ck-card-border);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.ck-service-tag:hover {
  border-color: rgba(192, 38, 211, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(192, 38, 211, 0.1);
}

.ck-service-tag__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.12), rgba(217, 70, 239, 0.06));
  color: #c026d3;
  font-size: 1.4rem;
  border: 1px solid rgba(192, 38, 211, 0.12);
}

.ck-service-tag__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ck-text);
  margin: 0;
}

.ck-service-tag__desc {
  font-size: 0.8rem;
  color: var(--ck-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* --- Service Section Intro Text --- */
.ck-service-intro {
  font-size: 1.1rem;
  color: var(--ck-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.ck-service-intro strong {
  color: var(--ck-text);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ck-service-image {
    min-height: 320px;
    margin-bottom: 2rem;
  }

  .ck-service-tags {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .ck-service-tags {
    grid-template-columns: 1fr;
  }

  .ck-service-card {
    padding: 1.15rem;
  }

  .ck-service-image {
    min-height: 260px;
  }
}

/* ==========================================
   WORKS SWIPER ROWS
   ========================================== */
.ck-works-row {
  overflow: hidden;
  margin-top: 1.5rem;
}

.ck-works-row:first-of-type {
  margin-top: 2.5rem;
}

.ck-works-swiper-1,
.ck-works-swiper-2 {
  overflow: hidden;
}

.ck-works-slide {
  width: 380px !important;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.ck-works-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ck-works-slide:hover img {
  transform: scale(1.06);
}

/* Smooth continuous feel */
.ck-works-swiper-1 .swiper-wrapper,
.ck-works-swiper-2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

@media (max-width: 768px) {
  .ck-works-slide {
    width: 260px !important;
    height: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ck-works-slide {
    width: 320px !important;
    height: 220px;
  }
}

/* ==========================================
   CONTACT SECTION — PREMIUM & MODERN
   ========================================== */

/* ── Section shell ── */
.ck-contact-premium {
  position: relative;
  background: linear-gradient(160deg, #06060e 0%, #0f0818 55%, #080810 100%);
  overflow: hidden;
}

/* dot-grid texture */
.ck-contact-premium-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ambient glow orbs */
.ck-contact-premium-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ck-contact-premium-orb--1 {
  top: -200px; right: -100px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(192,38,211,0.16) 0%, transparent 68%);
}
.ck-contact-premium-orb--2 {
  bottom: -180px; left: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(109,40,217,0.12) 0%, transparent 68%);
}
.ck-contact-premium-orb--3 {
  top: 40%; left: 45%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192,38,211,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
}

/* all inner content above decorations */
.ck-contact-premium > .mxd-container {
  position: relative;
  z-index: 1;
}

/* ── Section header (centered) ── */
.ck-contact-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ck-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 1rem;
  background: linear-gradient(135deg, rgba(192,38,211,0.14), rgba(217,70,239,0.07));
  border: 1px solid rgba(192,38,211,0.28);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d946ef;
  margin-bottom: 1.2rem;
}

.ck-contact-eyebrow i { font-size: 0.8rem; }

.ck-contact-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.ck-contact-section-title span {
  background: linear-gradient(135deg, #c026d3, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ck-contact-section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Row spacing ── */
.ck-contact-row {
  gap: 0;
  align-items: stretch;
}

/* ── Left column ── */
.ck-contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

/* ── Image frame with corner accents ── */
.ck-contact-image-frame {
  position: relative;
  flex: 1;
}

.ck-contact-image-frame__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.ck-contact-image-frame__corner--tl { top: -4px; left: -4px;
  border-top: 2px solid #c026d3; border-left: 2px solid #c026d3; border-radius: 4px 0 0 0; }
.ck-contact-image-frame__corner--tr { top: -4px; right: -4px;
  border-top: 2px solid #c026d3; border-right: 2px solid #c026d3; border-radius: 0 4px 0 0; }
.ck-contact-image-frame__corner--bl { bottom: -4px; left: -4px;
  border-bottom: 2px solid #c026d3; border-left: 2px solid #c026d3; border-radius: 0 0 0 4px; }
.ck-contact-image-frame__corner--br { bottom: -4px; right: -4px;
  border-bottom: 2px solid #c026d3; border-right: 2px solid #c026d3; border-radius: 0 0 4px 0; }

/* ── Image ── */
.ck-contact-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(192,38,211,0.25);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(192,38,211,0.1),
    0 0 50px rgba(192,38,211,0.1);
}

.ck-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ck-contact-image:hover img { transform: scale(1.04); }

.ck-contact-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,6,14,0.92) 0%,
    rgba(80,20,100,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

/* text overlaid on image */
.ck-contact-image__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 2;
}

.ck-contact-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.85rem;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  margin-bottom: 0.9rem;
}

.ck-contact-status-badge__dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: ck-status-pulse 2s ease-in-out infinite;
}

@keyframes ck-status-pulse {
  0%,100% { box-shadow: 0 0 6px #4ade80; }
  50%      { box-shadow: 0 0 14px #4ade80, 0 0 24px rgba(74,222,128,0.4); }
}

.ck-contact-image__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.ck-contact-image__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: 0;
}

/* ── Contact detail cards ── */
.ck-contact-details-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ck-contact-detail-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

a.ck-contact-detail-card:hover {
  background: rgba(192,38,211,0.1);
  border-color: rgba(192,38,211,0.3);
  transform: translateX(4px);
}

.ck-contact-detail-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(192,38,211,0.22), rgba(217,70,239,0.1));
  border: 1px solid rgba(192,38,211,0.32);
  color: #d946ef;
  font-size: 1.1rem;
  box-shadow: 0 0 16px rgba(192,38,211,0.18);
  transition: box-shadow 0.3s ease;
}

a.ck-contact-detail-card:hover .ck-contact-detail-card__icon {
  box-shadow: 0 0 24px rgba(192,38,211,0.4);
}

.ck-contact-detail-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.ck-contact-detail-card__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.ck-contact-detail-card__value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  line-height: 1.35;
}

.ck-contact-detail-card__arrow {
  font-size: 0.9rem;
  color: rgba(192,38,211,0.5);
  transition: all 0.3s ease;
}

a.ck-contact-detail-card:hover .ck-contact-detail-card__arrow {
  color: #d946ef;
  transform: translate(2px, -2px);
}

/* ── Form card (glassmorphism) ── */
.ck-contact-form-wrap {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(192,38,211,0.2);
  border-radius: 24px;
  padding: 2.75rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

/* shimmer top line */
.ck-contact-form-wrap__shimmer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192,38,211,0.8) 50%, transparent 100%);
  animation: ck-shimmer-slide 4s ease-in-out infinite;
}

@keyframes ck-shimmer-slide {
  0%   { opacity: 0.4; background-position: -100% 0; }
  50%  { opacity: 1; }
  100% { opacity: 0.4; }
}

/* badge */
.ck-contact-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.95rem;
  background: linear-gradient(135deg, rgba(192,38,211,0.15), rgba(217,70,239,0.07));
  border: 1px solid rgba(192,38,211,0.3);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d946ef;
  margin-bottom: 1rem;
}

.ck-contact-premium-badge i { font-size: 0.8rem; }

/* form title */
.ck-contact-form__title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.ck-contact-form__desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* form layout */
.ck-contact-form .form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ck-contact-form .form__reply {
  display: none;
  padding: 2rem 0;
}

.ck-contact-form .form__reply.is-visible { display: block; }
.ck-contact-form .form.is-hidden { display: none; }

/* two-column row for name + email */
.ck-contact-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* field with label */
.ck-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ck-contact-field__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.ck-contact-field__label span { color: #d946ef; }

/* inputs */
.ck-contact-field input,
.ck-contact-field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
}

.ck-contact-field input::placeholder,
.ck-contact-field textarea::placeholder {
  color: rgba(255,255,255,0.28);
}

.ck-contact-field input:focus,
.ck-contact-field textarea:focus {
  border-color: rgba(192,38,211,0.6);
  background: rgba(192,38,211,0.07);
  box-shadow: 0 0 0 3px rgba(192,38,211,0.12);
}

/* form footer: button + note */
.ck-contact-form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.4rem;
}

/* button */
.ck-contact-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #c026d3 0%, #7c3aed 100%);
  color: #ffffff !important;
  border: none;
  border-radius: 14px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  font-family: inherit;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(192,38,211,0.35);
}

/* shine sweep on button */
.ck-contact-submit__shine {
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.ck-contact-submit:hover .ck-contact-submit__shine { left: 130%; }

.ck-contact-submit:hover {
  background: linear-gradient(135deg, #d946ef 0%, #8b5cf6 100%);
  box-shadow: 0 16px 48px rgba(192,38,211,0.52);
  transform: translateY(-3px);
}

.ck-contact-submit .btn-caption,
.ck-contact-submit i { color: #ffffff !important; }

/* response time note */
.ck-contact-response-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.ck-contact-response-note i { color: #d946ef; font-size: 0.8rem; }
.ck-contact-response-note strong { color: rgba(255,255,255,0.6); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ck-contact-image { height: 340px; }
}

@media (max-width: 768px) {
  .ck-contact-section-header { margin-bottom: 2.5rem; }
  .ck-contact-form-wrap { padding: 1.75rem; margin-top: 2rem; }
  .ck-contact-fields-row { grid-template-columns: 1fr; }
  .ck-contact-image { height: 260px; }
  .ck-contact-image__title { font-size: 1.05rem; }
}
