/*
 Theme Name: Chengye Tech Landing AOS
 Theme URI: https://www.chengyetech.com
 Author: Chengye Tech Inc
 Author URI: https://www.chengyetech.com
 Description: Custom single-page landing theme for Chengye Tech Inc with AOS scroll animations.
 Version: 1.1
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: chengye-tech-landing-aos
*/

/* ====== Base ====== */
:root {
  --bg-main: #050814;
  --bg-alt: #0b1024;
  --accent: #40e0d0;
  --accent-soft: rgba(64, 224, 208, 0.12);
  --accent-pink: #ff6fae;
  --accent-yellow: #ffd54a;
  --text-main: #f5f7ff;
  --text-muted: #a9b0d4;
  --border-subtle: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.5);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #11193b 0, #050814 45%, #02030a 100%);
  color: var(--text-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

/* Background orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.28;
  z-index: -1;
  pointer-events: none;
}

.orb--pink {
  width: 360px;
  height: 360px;
  background: #ff4081;
  top: 10%;
  left: -8%;
}

.orb--blue {
  width: 420px;
  height: 420px;
  background: #2196f3;
  bottom: -12%;
  right: -10%;
}

/* ====== Navbar ====== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 20, 0.96),
    rgba(5, 8, 20, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 30% 20%, #ffffff, #2ec5ff 40%, #141b3f 80%);
  box-shadow: 0 0 18px rgba(64, 224, 208, 0.65);
  position: relative;
  overflow: hidden;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-pink));
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(120deg, var(--accent), var(--accent-pink));
  border: none;
  color: #02030a;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.nav-cta span {
  font-size: 1.05rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 8, 20, 0.8);
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: white;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: white;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    background: #070b1c;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ====== Hero ====== */
.hero {
  padding-top: 4.25rem;
  padding-bottom: 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.65rem 0.25rem 0.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #303972, #050814);
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.hero-kicker-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #00e5ff 30%, #1a237e);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.9);
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.hero-gradient {
  background: linear-gradient(110deg, #ffffff, var(--accent), var(--accent-pink));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.btn-primary {
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink));
  color: #050814;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.btn-outline {
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(6, 10, 28, 0.85);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(18, 25, 60, 0.95);
  border-color: var(--accent);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta-item span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  background: radial-gradient(circle at top, #374785, #070b1c);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-diamond-ring {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 30% 20%, #ffffff, #8be9ff, #141b3f 70%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-diamond {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff8e1, #ffd54a, #ff6fae, #80deff);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-diamond-inner {
  width: 76%;
  height: 76%;
  border-radius: 26px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #fff0c2, #ff9ac7);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.6);
}

/* small hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.badge {
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.11), transparent);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(64, 224, 208, 0.8);
}

/* ===== Section headings ===== */
.section-heading {
  text-align: center;
  margin-bottom: 3.2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: radial-gradient(circle at top left, #1c2443, #050814);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.patent-highlight {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(6, 10, 28, 0.85);
  display: flex;
  gap: 0.85rem;
  font-size: 0.84rem;
  align-items: flex-start;
}

.patent-highlight span {
  font-size: 1.1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.7rem;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-stat {
  padding: 1rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 12, 37, 0.9);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
}

.about-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #040715;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.about-image-card img {
  width: 100%;
  height: auto;
}

.about-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1.2rem;
  font-size: 0.78rem;
  background: linear-gradient(
    to top,
    rgba(2, 3, 10, 0.96),
    rgba(2, 3, 10, 0.3),
    transparent
  );
}

/* ===== Services ===== */
.services {
  background: radial-gradient(circle at top, #141b3f, #050814 55%, #020309 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.7rem;
  background: radial-gradient(circle at top left, #263259, #050814);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #40e0d0, #11193b);
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
}

.service-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.service-tag {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(4, 10, 32, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ===== Technology ===== */
.tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .tech-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.timeline {
  position: relative;
  padding-left: 1.35rem;
  margin-top: 1.3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-pink));
  opacity: 0.55;
}

.timeline-step {
  position: relative;
  padding: 0.55rem 0 0.55rem 0.9rem;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid #02030a;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(64, 224, 208, 0.9);
}

.timeline-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.tech-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(6, 10, 28, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tech-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #02030a;
  box-shadow: var(--shadow-soft);
}

.tech-image-card img {
  width: 100%;
  height: auto;
}

.tech-image-caption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-img-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #02030a;
  position: relative;
}

.gallery-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.color-chip {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 11, 30, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.color-dot.pink { background: var(--accent-pink); }
.color-dot.yellow { background: var(--accent-yellow); }
.color-dot.blue { background: #64b5ff; }

.gallery-text {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact {
  background: radial-gradient(circle at top, #11193b, #050814 50%, #020309 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-details {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.contact-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.55rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.contact-value {
  font-size: 0.92rem;
}

.tagline-box {
  margin-top: 1.3rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-form-card {
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  background: #050814;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-form-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
}

.form-field label {
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 12, 30, 0.9);
  color: var(--text-main);
  padding: 0.75rem 0.85rem;
  font-size: 0.86rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
  resize: vertical;
  min-height: 44px;
}

.form-field textarea {
  min-height: 110px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(64, 224, 208, 0.4);
  background: rgba(4, 8, 24, 0.9);
}

.form-message {
  margin-top: 1rem;
}

.form-footer {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-note {
  max-width: 260px;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.6rem 0 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(2, 3, 10, 0.95);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}





/* ================================
   WPForms — Chengye Tech Dark Theme
   All rules include !important
================================ */

/* FORM WRAPPER */
.wpforms-container .wpforms-form !important {
  background: rgba(5, 8, 20, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  padding: 2rem !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55) !important;
}

/* LABELS */
.wpforms-field-label {
  color: #a9b0d4 !important;
  font-size: 0.85rem !important;
  margin-bottom: 6px !important;
  font-weight: 500 !important;
}

/* REQUIRED ASTERISK */
.wpforms-required-label {
  color: #ff6fae !important;
}

/* INPUT + TEXTAREA FIELDS */
.wpforms-field input,
.wpforms-field textarea {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  border-radius: 16px !important;
  background: rgba(9, 12, 30, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #f5f7ff !important;
  font-size: 0.92rem !important;
  transition: all 0.25s ease !important;
  outline: none !important;
}

/* PLACEHOLDER */
.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
  color: #7d85a8 !important;
  opacity: 0.8 !important;
}

/* ON FOCUS */
.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: #40e0d0 !important;
  box-shadow: 0 0 8px rgba(64, 224, 208, 0.6) !important;
  background: rgba(4, 8, 24, 0.95) !important;
}

/* TEXTAREA FIX */
.wpforms-field textarea {
  min-height: 130px !important;
  resize: vertical !important;
}

/* SUBMIT BUTTON */
.wpforms-submit {
  background: linear-gradient(135deg, #40e0d0, #ff6fae) !important;
  color: #02030a !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 999px !important;
  border: none !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  box-shadow: 0 14px 28px rgba(0,0,0,0.7) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

/* SUBMIT BUTTON HOVER */
.wpforms-submit:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.85) !important;
}

/* SUBMIT SPINNER */
.wpforms-submit-spinner {
  filter: brightness(1.6) !important;
}

/* FIELD ERRORS */
.wpforms-error,
.wpforms-field-error {
  color: #ff6fae !important;
  font-size: 0.75rem !important;
  margin-top: 4px !important;
}

/* ERROR BOX (JS DISABLED) */
.wpforms-error-noscript {
  padding: 1rem !important;
  border-radius: 16px !important;
  background: rgba(255, 0, 70, 0.15) !important;
  color: #ff809f !important;
  font-size: 0.85rem !important;
}

/* SUCCESS MESSAGE */
.wpforms-confirmation-container-full {
  background: rgba(20, 255, 190, 0.08) !important;
  padding: 1rem 1.5rem !important;
  border-radius: 18px !important;
  border: 1px solid rgba(64, 224, 208, 0.4) !important;
  color: #40e0d0 !important;
  box-shadow: 0 0 10px rgba(64,224,208,0.3) !important;
  font-size: 0.9rem !important;
}

/* HONEYPOT FIELD (Hidden) */
.wpforms-field-hp {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* FIELD SPACING */
.wpforms-field {
  margin-bottom: 1.4rem !important;
}


.wpforms-container .wpforms-field, .wp-core-ui div.wpforms-container .wpforms-field{
  padding: 0 !important;
}