/* ============================================================
   AI知学社 - 移动端响应式样式
   设计：深蓝(#0a1628) + 金色(#D4AF37) 科技风
   断点：768px(手机) / 1024px(平板)
   ============================================================ */

/* ---------- 全局：防止横向溢出 ---------- */
html, body { overflow-x: hidden; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ============================================================
   平板端 (769px - 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

  /* ===== Header / 导航 ===== */
  .site-custom-header > div { padding: 0 20px !important; }
  .site-custom-nav .nav-link { padding: 8px 10px !important; font-size: 14px !important; }
  .site-custom-nav .nav-cta { padding: 8px 18px !important; font-size: 13px !important; margin-left: 6px !important; }

  /* ===== 容器 ===== */
  .ast-container { max-width: 100% !important; padding: 0 20px !important; }

  /* ===== 子页面 Hero ===== */
  .zxs-page-hero h1 { font-size: 36px !important; }
  .zxs-page-hero { padding: 70px 20px 60px !important; }

  /* ===== 首页 Hero ===== */
  body.page-template-page-template-homepage .hero-section { padding: 60px 20px 80px !important; }
  body.page-template-page-template-homepage .hero-title { font-size: 38px !important; }
  body.page-template-page-template-homepage .hero-section > div > p { font-size: 16px !important; }

  /* ===== 首页各section padding ===== */
  body.page-template-page-template-homepage section[style*="padding:70px"] { padding: 60px 20px !important; }

  /* ===== 首页标题字号 ===== */
  body.page-template-page-template-homepage h2[style*="font-size:32px"] { font-size: 28px !important; }

  /* ===== 人群入口 4列→2列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(2) > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ===== 四阶课程 4列→2列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(3) > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ===== AI+文化课 2列→1列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(4) > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ===== 开源共创 2列左文右图 → 1列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(5) > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* ===== 核心优势 3列→2列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(6) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ===== 学员作品 3列→2列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(7) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ===== 资讯中心 3列→2列 ===== */
  body.page-template-page-template-homepage section:nth-of-type(8) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* ===== Hero数据统计 4列→2列 ===== */
  body.page-template-page-template-homepage .hero-section > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin-top: 50px !important;
    padding-top: 40px !important;
  }

  /* ===== CTA ===== */
  body.page-template-page-template-homepage section:nth-of-type(9) .hero-title { font-size: 30px !important; }
}


/* ============================================================
   手机端 (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ===== 全局容器 ===== */
  .ast-container { padding: 0 16px !important; }
  .site-custom-header > div { padding: 0 16px !important; }

  /* ===== 排版全局缩小 ===== */
  .entry-content h1 { font-size: 26px !important; }
  .entry-content h2 { font-size: 22px !important; }
  .entry-content h3 { font-size: 18px !important; }
  .entry-content h4 { font-size: 16px !important; }
  .entry-content p { font-size: 14px !important; line-height: 1.7 !important; }
  .entry-content li { font-size: 14px !important; }

  /* ===== 按钮缩小 ===== */
  .zxs-btn, .entry-content .zxs-btn,
  .zxs-btn-outline, .entry-content .zxs-btn-outline {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }

  /* ===== Header 高度 ===== */
  .site-custom-header { height: 56px !important; }
  .site-custom-header.header-scrolled { height: 52px !important; }
  .site-custom-header > div,
  .site-custom-header.header-scrolled > div { height: 100% !important; }
  .site-header-spacer { height: 56px !important; }

  /* ===== Logo 缩小 ===== */
  .site-logo-link img { height: 32px !important; }
  .site-custom-header.header-scrolled .site-logo-link img { height: 28px !important; }

  /* ===== 导航：隐藏桌面菜单 ===== */
  .site-custom-nav { display: none !important; }

  /* ===== 子页面 Hero ===== */
  .zxs-page-hero { padding: 50px 16px 40px !important; }
  .zxs-page-hero h1 { font-size: 28px !important; letter-spacing: 1px !important; }
  .zxs-page-hero p { font-size: 14px !important; max-width: 100% !important; }
  .zxs-page-hero .hero-badge { font-size: 12px !important; padding: 5px 18px !important; margin-bottom: 14px !important; }

  /* ========== 首页 ========== */

  /* ---- Hero Section ---- */
  body.page-template-page-template-homepage .hero-section {
    padding: 50px 16px 60px !important;
    min-height: auto !important;
  }
  body.page-template-page-template-homepage .hero-section > div[style*="max-width"] {
    max-width: 100% !important;
    padding: 0 !important;
  }
  body.page-template-page-template-homepage .hero-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
    letter-spacing: 1px !important;
    margin-bottom: 14px !important;
  }
  body.page-template-page-template-homepage .hero-section > div > div[style*="display:inline-flex"] {
    font-size: 12px !important;
    padding: 6px 16px !important;
    margin-bottom: 18px !important;
  }
  body.page-template-page-template-homepage .hero-section p[style*="font-size:18px"] {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
  }

  /* Hero按钮 */
  body.page-template-page-template-homepage .hero-section a[style*="padding:14px"] {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }

  /* Hero数据统计 4列→2列 */
  body.page-template-page-template-homepage .hero-section > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-top: 40px !important;
    padding-top: 30px !important;
  }
  body.page-template-page-template-homepage .stat-number[style*="font-size:38px"] {
    font-size: 26px !important;
  }
  body.page-template-page-template-homepage .hero-section > div > div[style*="grid-template-columns:repeat(4"] > div > div:not(.stat-number) {
    font-size: 12px !important;
  }

  /* ---- 各section padding缩小 ---- */
  body.page-template-page-template-homepage section[style*="padding:70px"] {
    padding: 40px 16px !important;
  }
  body.page-template-page-template-homepage section[style*="padding:70px"] > div[style*="max-width"] {
    max-width: 100% !important;
  }

  /* ---- section 标题 ---- */
  body.page-template-page-template-homepage h2[style*="font-size:32px"] {
    font-size: 22px !important;
    margin-bottom: 12px !important;
  }
  body.page-template-page-template-homepage h2.section-title {
    font-size: 22px !important;
  }
  body.page-template-page-template-homepage div[style*="font-size:13px"][style*="letter-spacing:2px"] {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 8px !important;
  }
  body.page-template-page-template-homepage p[style*="color:#666;font-size:16px"] {
    font-size: 14px !important;
  }
  body.page-template-page-template-homepage section > div > div[style*="text-align:center;margin-bottom:50px"] {
    margin-bottom: 30px !important;
  }
  body.page-template-page-template-homepage section > div > div[style*="display:flex;justify-content:space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  /* ---- 人群入口 4列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(2) > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ---- 四阶课程 4列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(3) > div > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ---- AI+文化课 2列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(4) > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) h2[style*="font-size:32px"] {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) p[style*="font-size:16px"] {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
  }
  /* 九大学科卡片 */
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="background:#fff;border-radius:16px;padding:40px"] {
    padding: 24px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="display:grid;grid-template-columns:repeat(3"] {
    gap: 8px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="text-align:center;padding:16px 8px"] {
    padding: 12px 4px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="font-size:20px;margin-bottom:6px"] {
    font-size: 18px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="font-size:14px;color:#333"] {
    font-size: 12px !important;
  }
  /* AI+文化课下方checklist */
  body.page-template-page-template-homepage section:nth-of-type(4) div[style*="display:flex;justify-content:space-between"] {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }

  /* ---- 开源共创 2列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(5) > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(5) h2[style*="font-size:32px"] {
    font-size: 22px !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(5) p[style*="color:rgba(255,255,255,0.75)"] {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(5) div[style*="color:#D4AF37;font-size:18px"] {
    font-size: 15px !important;
  }
  /* 开源共创右侧卡片 2列→2列保留 */

  /* ---- 核心优势 3列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(6) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.page-template-page-template-homepage .feature-item {
    padding: 24px 20px !important;
  }
  body.page-template-page-template-homepage .feature-item h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  body.page-template-page-template-homepage .feature-item p {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(6) div[style*="width:50px;height:50px"] {
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }

  /* ---- 学员作品 3列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(7) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.page-template-page-template-homepage .work-card .work-image {
    height: 160px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(7) div[style*="padding:24px"] {
    padding: 18px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(7) h3[style*="font-size:16px"] {
    font-size: 15px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(7) p[style*="color:#888;font-size:13px"] {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* ---- 资讯中心 3列→1列 ---- */
  body.page-template-page-template-homepage section:nth-of-type(8) > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(8) .news-image {
    height: 140px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(8) div[style*="padding:24px"] {
    padding: 18px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(8) h3[style*="font-size:16px"] {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(8) p[style*="color:#888;font-size:13px"] {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* ---- CTA 区域 ---- */
  body.page-template-page-template-homepage section:nth-of-type(9) {
    padding: 50px 16px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(9) h2.hero-title {
    font-size: 24px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(9) p[style*="font-size:16px"] {
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 28px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(9) a[style*="padding:14px"] {
    padding: 10px 28px !important;
    font-size: 14px !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(9) div[style*="display:flex;gap:16px"] {
    gap: 12px !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  body.page-template-page-template-homepage section:nth-of-type(9) div[style*="display:flex;gap:16px"] a {
    width: 100% !important;
    max-width: 260px !important;
  }

  /* ===== 子页面通用 ===== */

  /* 子页面内容区容器适配 */
  .entry-content > div[style*="max-width"] {
    max-width: 100% !important;
  }

  /* 子页面常见grid布局：3列→1列 */
  .entry-content div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* 子页面常见grid布局：4列→1列 */
  .entry-content div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* 子页面常见grid布局：2列→1列 */
  .entry-content div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  /* 子页面flex并排改为堆叠 */
  .entry-content div[style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* 资讯中心左图右文 → 上图下文 */
  .entry-content div[style*="display:flex"][style*="gap:"][style*="align-items"]:not([style*="justify-content"]) {
    flex-direction: column !important;
  }

  /* 子页面卡片内边距调整 */
  .entry-content div[style*="padding:24px"] {
    padding: 18px !important;
  }
  .entry-content div[style*="padding:36px"] {
    padding: 24px !important;
  }

  /* 联系页表单 */
  .wpforms-container {
    max-width: 100% !important;
  }
  .wpforms-field {
    padding: 0 !important;
  }
  .wpforms-submit {
    width: 100% !important;
  }

  /* 表格横向滚动 */
  .entry-content table {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
  }

  /* ===== Footer 响应式补充 ===== */
  .zxs-footer {
    padding: 40px 16px 20px !important;
  }
  .zxs-footer-inner {
    max-width: 100% !important;
  }
  .zxs-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-bottom: 28px !important;
  }
  .zxs-footer-brand {
    grid-column: span 1 !important;
  }
  .zxs-footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }
  .zxs-footer-bottom-links {
    gap: 14px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
}

/* ============================================================
   小屏手机 (≤480px) - 额外微调
   ============================================================ */
@media (max-width: 480px) {
  body.page-template-page-template-homepage .hero-title { font-size: 24px !important; }
  body.page-template-page-template-homepage h2[style*="font-size:32px"] { font-size: 20px !important; }
  body.page-template-page-template-homepage h2.section-title { font-size: 20px !important; }
  .zxs-page-hero h1 { font-size: 24px !important; }
  .entry-content h1 { font-size: 22px !important; }
  .entry-content h2 { font-size: 19px !important; }
}


/* ===== 移动端汉堡菜单 + WPForms按钮修复 ===== */
/* ========================================
   移动端汉堡菜单 + 侧边抽屉
   ======================================== */

/* 汉堡按钮 - 默认隐藏，移动端显示 */
.zxs-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.zxs-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #D4AF37;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* 移动端侧边抽屉 */
.zxs-mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1628 0%, #162844 100%);
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.zxs-mobile-drawer.is-open {
  right: 0;
}

.zxs-mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.zxs-mobile-logo {
  height: 36px;
  width: auto;
}

.zxs-mobile-close {
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  font-weight: 300;
}

.zxs-mobile-nav {
  padding: 16px 0;
}

.zxs-mobile-nav-link {
  display: block;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.25s ease;
}

.zxs-mobile-nav-link:hover,
.zxs-mobile-nav-link.is-active {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
  border-left-color: #D4AF37;
}

.zxs-mobile-nav-cta {
  display: block;
  margin: 20px 24px;
  padding: 14px 24px;
  text-align: center;
  background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
  color: #0a1628 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.zxs-mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* 遮罩 */
.zxs-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.zxs-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* 断点：768px以下显示汉堡，隐藏桌面导航 */
@media (max-width: 768px) {
  .zxs-mobile-toggle {
    display: flex;
  }
  .site-custom-header .site-custom-nav {
    display: none !important;
  }
  .site-custom-header > div {
    justify-content: space-between;
  }
}

/* ========================================
   WPForms 样式强化（确保金色按钮生效）
   ======================================== */

/* 用更通用的选择器覆盖WPForms Lite */
.wpforms-form .wpforms-submit,
.wpforms-form button.wpforms-submit,
.wpforms-form input[type="submit"].wpforms-submit,
div.wpforms-container .wpforms-form .wpforms-submit {
  background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%) !important;
  color: #0a1628 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 14px 40px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.wpforms-form .wpforms-submit:hover,
.wpforms-form button.wpforms-submit:hover {
  background: linear-gradient(135deg, #e5c048 0%, #D4AF37 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

/* 输入框确保白色背景可见 */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
  background: #ffffff !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  color: #0a1628 !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus {
  border-color: #D4AF37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  outline: none !important;
}

.wpforms-form .wpforms-field-label {
  color: #0a1628 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 8px !important;
}

/* ===== WPForms 深蓝背景适配（CSS变量覆盖） ===== */
.zxs-contact-form {
  --wpforms-field-background-color: #ffffff !important;
  --wpforms-field-border-color: rgba(212, 175, 55, 0.3) !important;
  --wpforms-field-text-color: #0a1628 !important;
  --wpforms-field-border-radius: 8px !important;
  --wpforms-field-size-input-height: 48px !important;
  --wpforms-field-size-font-size: 15px !important;
  --wpforms-field-size-padding-h: 16px !important;
  --wpforms-button-background-color: #D4AF37 !important;
  --wpforms-button-text-color: #0a1628 !important;
  --wpforms-button-border-color: #D4AF37 !important;
  --wpforms-button-border-radius: 8px !important;
  --wpforms-button-size-font-size: 16px !important;
  --wpforms-button-size-height: 50px !important;
  --wpforms-button-size-padding-h: 40px !important;
}

.zxs-contact-form .wpforms-form .wpforms-field-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.zxs-contact-form .wpforms-form .wpforms-submit {
  background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%) !important;
  color: #0a1628 !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
  transition: all 0.3s ease !important;
}

.zxs-contact-form .wpforms-form .wpforms-submit:hover {
  background: linear-gradient(135deg, #e5c048 0%, #D4AF37 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}
