/* ============================================================
   LOGO — IMAGE + TEXT COMBO STYLES
   Works for both custom image logo and text fallback
   ============================================================ */

/* Custom logo image from WP Customizer */
.as-logo .custom-logo-link img.custom-logo,
.as-logo img.custom-logo {
  max-height: 52px !important;
  width: auto !important;
  height: 52px !important;
  object-fit: contain;
  display: block;
}
/* Footer logo smaller */
.as-footer .as-logo img.custom-logo,
.as-footer .as-logo .custom-logo-link img {
  max-height: 44px !important;
  height: 44px !important;
  filter: brightness(1.1);
}
/* Mobile nav logo */
.mobile-logo img.custom-logo,
.mobile-logo .custom-logo-link img {
  max-height: 44px !important;
  height: 44px !important;
}

/* Logo text — white bg context (header, mobile nav) */
.as-header .as-logo-text .logo-name { color: var(--black) !important; }
.as-header .as-logo-text .logo-sub  { color: var(--text-muted) !important; }

/* Logo text — black bg context (footer, topbar) */
.as-footer .as-logo-text .logo-name,
.as-topbar .as-logo-text .logo-name { color: #C9A227 !important; }
.as-footer .as-logo-text .logo-sub,
.as-topbar .as-logo-text .logo-sub  { color: rgba(255,255,255,0.45) !important; }

/* Mobile nav — white bg */
.mobile-logo .as-logo-text .logo-name { color: var(--black) !important; }
.mobile-logo .as-logo-text .logo-sub  { color: var(--text-muted) !important; }

/* Topbar logo link */
.as-topbar .as-logo { text-decoration: none; }


/* ============================================================
   WOOCOMMERCE — FORCE HIDE DEFAULT SIDEBAR ON ALL WC PAGES
   Prevents "Recent Posts / Recent Comments" from showing
   ============================================================ */
.woocommerce aside.widget-area,
.woocommerce-page aside.widget-area,
aside#secondary,
#secondary.widget-area,
.woocommerce-layout__header-breadcrumb {
  display: none !important;
  visibility: hidden !important;
}

/* Ensure breadcrumb duplication is hidden — only show our custom .breadcrumb */
.woocommerce .woocommerce-breadcrumb {
  display: none !important;
}
/* ============================================================
   AMPERE SOLUTIONS — EXTRA CSS
   Mobile-first, all sections visible, white/gold/black palette
   ============================================================ */

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open {
  transform: translateX(0);
}
.mobile-nav-close {
  align-self: flex-end;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  color: var(--black);
  width: 40px; height: 40px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 44px; /* touch target */
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-200);
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--grey-100);
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  padding: 16px 4px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  min-height: 48px; /* touch target */
  text-decoration: none;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a:focus { color: var(--gold); }
.mobile-nav-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-contact a {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.mobile-nav-contact a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP + WHATSAPP FLOAT
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--black);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999; border: none;
  font-family: var(--font-body);
  min-width: 44px; /* touch target */
}
.back-to-top.show {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); color: var(--black); }

.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   WHY SECTION — MAKE VISIBLE (needs why-visual class)
   ============================================================ */
.why-visual { width: 100%; }
.why-points-wrap { width: 100%; }
.why-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.why-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   CONTACT — h4 inside contact-detail
   ============================================================ */
.contact-detail h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

/* ============================================================
   SHOP / ARCHIVE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 48px 0;
}
.shop-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
  flex-wrap: wrap;
  gap: 12px;
}
.shop-toolbar .result-count { font-size: 13px; color: var(--text-muted); }
.woocommerce-ordering select {
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.woocommerce div.product { background: transparent; color: var(--text-primary); }
.woocommerce div.product .woocommerce-product-gallery {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  overflow: hidden;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--grey-200);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--grey-100);
  border-color: var(--grey-200);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--white);
  border-bottom-color: var(--white);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-secondary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--black); }
.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 0 12px 12px 12px;
  padding: 24px;
  color: var(--text-secondary);
}
.woocommerce .quantity input.qty {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  color: var(--text-primary);
  width: 72px; text-align: center; padding: 8px;
  font-size: 14px;
}

/* ============================================================
   CART & CHECKOUT
   ============================================================ */
.woocommerce-checkout h3,
.woocommerce-cart h2 {
  font-family: var(--font-display);
  color: var(--black);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: var(--grey-100);
  border-color: var(--grey-200);
  color: var(--text-primary);
  border-radius: 8px;
}
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
  background: var(--white);
}
.woocommerce form .form-row label {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.woocommerce #payment {
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--grey-200);
}
.woocommerce #payment div.payment_box {
  background: var(--grey-100);
  color: var(--text-secondary);
}
.woocommerce #payment ul.payment_methods {
  border-bottom: 1px solid var(--grey-200);
}
.woocommerce #payment ul.payment_methods li { color: var(--text-primary); }
.woocommerce-error {
  border-radius: 10px;
  background: #FFF0F0;
  border-top: 3px solid #C0392B;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-reg-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 14px;
  padding: 22px;
  margin-top: 14px;
}
.about-reg-box h4 {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-dark);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.about-stat {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.about-stat .as-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat .as-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.as-main { min-height: 60vh; background: var(--white); }
.woo-main { background: var(--white); }
.page-content {
  padding: 60px 0;
  color: var(--text-secondary);
  line-height: 1.8;
}
.page-content h1, .page-content h2, .page-content h3 {
  font-family: var(--font-display);
  color: var(--black);
  margin: 28px 0 12px;
}
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol {
  margin: 12px 0 16px 20px;
}
.page-content ul li, .page-content ol li { margin-bottom: 6px; }
.page-content a { color: var(--gold-dark); }
.page-content a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================================================
   GLOBAL UTILITY
   ============================================================ */
::selection { background: rgba(201,162,39,0.2); color: var(--black); }
:focus-visible { outline: 2px solid rgba(201,162,39,0.5); outline-offset: 2px; }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden;
  padding: 0; position: absolute;
  word-wrap: normal !important;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  .as-topbar { display: none; }
  .as-nav { display: none; }
  .hamburger { display: flex !important; }
  .header-search { display: none; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr !important; padding: 48px 20px; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(28px, 6vw, 40px) !important; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  /* Categories */
  .cats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .woocommerce .products { grid-template-columns: repeat(2, 1fr) !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr !important; }
  .service-booking-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .service-booking-strip .btn-book { width: 100%; }

  /* Why */
  .why-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .why-visual { display: block !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .form-row { grid-template-columns: 1fr !important; }
  .contact-form { padding: 24px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .as-footer { padding: 40px 0 0; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-sidebar { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr !important; gap: 32px; }

  /* Page hero */
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: clamp(22px, 5vw, 32px); }

  /* Container padding */
  .container { padding: 0 16px; }

  /* Section padding */
  .as-categories,
  .as-products,
  .as-services,
  .as-why,
  .as-testimonials,
  .as-contact { padding: 56px 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; justify-content: center; }
  .cats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .products-grid { grid-template-columns: 1fr 1fr !important; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-title { font-size: 20px; }
  .why-big-card { padding: 28px 20px; }
  .service-booking-strip { border-radius: 12px; }
  .as-footer .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .as-topbar, .as-header, .as-strip, .whatsapp-float, .back-to-top,
  .hamburger, .mobile-nav-overlay { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}
/* ============================================================
   CONTACT PAGE — LUXURY WHITE + GOLD + BLACK
   Append this to the END of css/extra.css
/* ============================================================
   CONTACT PAGE — LUXURY WHITE + GOLD + BLACK
   Append this to the END of css/extra.css
   ============================================================ */

/* HERO */
.ct-hero {
  background: var(--black);
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(201,162,39,0.15);
  position: relative;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero .breadcrumb { color: rgba(255,255,255,0.35); justify-content: center; }
.ct-hero .breadcrumb a { color: var(--gold-dark); }
.ct-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.ct-gold { color: var(--gold); }
.ct-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GOLD STRIP */
.ct-strip { background: var(--gold); padding: 0; }
.ct-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.ct-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  text-decoration: none;
  flex: 1;
  min-width: 200px;
  transition: var(--transition);
}
.ct-strip-item:hover { background: rgba(0,0,0,0.06); }
.ct-strip-icon {
  font-size: 22px;
  width: 42px; height: 42px;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-strip-lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}
.ct-strip-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.ct-strip-sep {
  width: 1px;
  height: 44px;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* MAIN SECTION */
.ct-main {
  background: var(--off-white);
  padding: 80px 0 100px;
}
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.ct-left {}
.ct-block-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

/* Info Cards */
.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 16px 18px;
  transition: var(--transition);
}
.ct-info-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateX(3px);
}
.ct-info-icon {
  font-size: 20px;
  width: 42px; height: 42px;
  background: var(--gold-faint);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-info-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.ct-info-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-decoration: none;
}
.ct-info-phone {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}
.ct-info-phone:hover { color: var(--gold); }
.ct-info-email {
  font-size: 13px;
  color: var(--gold-dark);
  text-decoration: none;
}
.ct-info-email:hover { color: var(--gold); }

/* Map */
.ct-map-wrap {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

/* WhatsApp Button */
.ct-wa-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid #25D366;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  transition: var(--transition);
}
.ct-wa-btn:hover {
  background: #f0fff5;
  box-shadow: 0 4px 20px rgba(37,211,102,0.15);
  transform: translateY(-2px);
}
.ct-wa-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a9e4f;
}
.ct-wa-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.ct-wa-arrow {
  margin-left: auto;
  font-size: 18px;
  color: #25D366;
  font-weight: 700;
}

/* RIGHT SIDE — FORM CARD */
.ct-right { position: sticky; top: 100px; }
.ct-form-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(0,0,0,0.12);
  border: 1px solid var(--grey-200);
}

/* Form Header */
.ct-form-header {
  background: var(--black);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid var(--gold);
}
.ct-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.ct-form-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}
.ct-form-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
}

/* Form Body */
.ct-form-body { padding: 28px 32px; background: var(--white); }
.ct-field { margin-bottom: 18px; }
.ct-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}
.ct-req { color: var(--gold-dark); }
.ct-input {
  width: 100%;
  background: var(--grey-100);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .22s, background .22s, box-shadow .22s;
  appearance: none;
  -webkit-appearance: none;
}
.ct-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
.ct-input::placeholder { color: var(--text-muted); }
.ct-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ct-textarea { resize: vertical; min-height: 110px; }
.ct-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 14px;
}
.ct-submit-btn:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.ct-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.ct-trust {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 40px; }
  .ct-right { position: static; }
}
@media (max-width: 600px) {
  .ct-strip-inner { flex-direction: column; gap: 0; }
  .ct-strip-sep { display: none; }
  .ct-strip-item { width: 100%; padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .ct-form-header { flex-direction: column; }
  .ct-form-body { padding: 22px 20px; }
  .ct-form-header { padding: 22px 20px; }
}
