/* ==========================================================================
   VCAN FITNESS - Component Library
   Anti-AI Handmade Components
   ========================================================================== */

/* ==========================================================================
   BUTTONS - Intentionally Imperfect
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  transition: all var(--duration-base) var(--ease-natural);
  min-height: var(--touch-target-min);

  /* Subtle baseline shift for handmade feel */
  transform: translateY(0.5px);
}

/* Mobile touch target improvements */
@media (max-width: 768px) {
  .btn {
    min-height: 48px;
    padding: 14px 24px;
    font-size: var(--body);
    touch-action: manipulation;
  }

  .btn-large {
    min-height: 54px;
    padding: 16px var(--space-5);
    font-size: var(--body-lg);
  }
}

/* Primary Button - Brutal Shadow */
.btn-primary {
  background: var(--vc-primary, #1863dc);
  color: var(--vc-fg-primary);
  clip-path: polygon(
    0 2px,
    calc(100% - 2px) 0,
    100% 1px,
    100% calc(100% - 1px),
    calc(100% - 1px) 100%,
    2px 100%,
    0 calc(100% - 2px)
  );
  box-shadow: 4px 4px 0 #000000;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000000;
}

.btn-primary:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #000000;
}

/* Secondary Button - Hand-drawn Border */
.btn-secondary {
  background: transparent;
  color: var(--vc-primary);
  border: 2px solid var(--vc-primary);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--vc-primary, #1863dc);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--duration-base);
}

.btn-secondary:hover {
  color: var(--vc-fg-primary);
}

.btn-secondary:hover::before {
  opacity: 1;
}

/* Ghost Button - Subtle Underline */
.btn-ghost {
  background: none;
  color: var(--vc-fg-secondary);
  padding: 8px 16px;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-natural);
}

.btn-ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* PayPal Button - Branded Style */
.btn-paypal {
  background: #0070ba; /* PayPal Blue */
  color: #ffffff;
  border: 2px solid #0070ba;
  font-weight: var(--fw-semibold);
  position: relative;
  box-shadow: 3px 3px 0 rgba(0, 112, 186, 0.3);
  transition: all var(--duration-base);
}

.btn-paypal:hover {
  background: #005a94;
  border-color: #005a94;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(0, 112, 186, 0.4);
  color: #ffffff;
}

.btn-paypal-ghost {
  background: transparent;
  color: #0070ba;
  border: 2px solid #0070ba;
  font-weight: var(--fw-medium);
  transition: all var(--duration-base);
  margin-left: var(--space-2);
}

.btn-paypal-ghost:hover {
  background: #0070ba;
  color: #ffffff;
}

/* Payment Divider */
.payment-divider {
  text-align: center;
  margin: var(--space-2) 0;
  color: var(--vc-fg-secondary);
  font-size: var(--body-sm);
  font-style: italic;
  position: relative;
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--vc-border);
}

.payment-divider::before {
  left: 0;
}

.payment-divider::after {
  right: 0;
}

/* ==========================================================================
   MEMBERSHIP CARDS - New membership pricing layout
   ========================================================================== */

.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
  margin: var(--space-8) 0;
}

.membership-card {
  background: var(--vc-bg-light);
  color: var(--vc-fg-dark);
  padding: var(--space-6);
  border: 3px solid var(--vc-border);
  position: relative;
  transform: rotate(-0.5deg);
  transition: all var(--duration-base);
}

.membership-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 8px 8px 0 var(--vc-bg-main, #ffffff);
}

.membership-card-featured {
  border-color: var(--vc-primary);
  transform: rotate(0.5deg);
  box-shadow: 6px 6px 0 var(--vc-primary-dark);
}

.membership-header {
  text-align: center;
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--vc-border);
  margin-bottom: var(--space-4);
}

.membership-name {
  font-size: var(--h2);
  margin-bottom: var(--space-2);
}

.membership-tagline {
  color: var(--vc-fg-secondary-dark);
  font-style: italic;
  margin-bottom: var(--space-3);
}

.membership-price {
  margin-top: var(--space-3);
}

.price-amount {
  font-size: var(--display);
  font-weight: var(--fw-black);
  color: var(--vc-primary);
}

.price-period {
  font-size: var(--body-lg);
  color: var(--vc-fg-secondary-dark);
}

.membership-description {
  padding: var(--space-4) 0;
  font-size: var(--body-lg);
  line-height: 1.6;
}

.membership-features {
  list-style: none;
  padding: var(--space-4) 0;
}

.membership-features li {
  padding: var(--space-2) 0;
  padding-left: var(--space-4);
  position: relative;
}

.membership-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vc-accent);
  font-weight: bold;
}

.feature-highlight {
  font-weight: var(--fw-bold);
  color: var(--vc-primary);
}

.membership-ideal {
  background: rgba(24, 99, 220, 0.05);
  padding: var(--space-3);
  margin: var(--space-4) 0;
  border-left: 4px solid var(--vc-primary);
}

.membership-ideal ul {
  list-style: none;
  padding-top: var(--space-2);
}

.membership-ideal li {
  padding: var(--space-1) 0;
  font-size: var(--body-sm);
}

.membership-actions {
  margin-top: var(--space-4);
}

/* Comparison Table */
.comparison-section {
  margin-top: var(--space-8);
}

.comparison-table {
  width: 100%;
  background: var(--vc-bg-light);
  color: var(--vc-fg-dark);
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid var(--vc-border);
}

.comparison-table th {
  background: var(--vc-primary, #1863dc);
  color: var(--vc-fg-primary);
  padding: var(--space-3);
  text-align: left;
  font-weight: var(--fw-bold);
}

.comparison-table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--vc-border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .price-row {
  background: rgba(24, 99, 220, 0.05);
  font-weight: var(--fw-bold);
}

/* Trial Offer */
.trial-offer {
  max-width: 600px;
  margin: var(--space-6) auto;
  padding: var(--space-6);
  background: var(--vc-bg-light);
  color: var(--vc-fg-dark);
  border: 3px dashed var(--vc-primary);
  text-align: center;
}

.price-large {
  font-size: var(--display);
  font-weight: var(--fw-black);
  color: var(--vc-accent);
  margin: var(--space-3) 0;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.faq-item {
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  color: var(--vc-fg-primary);
  border-left: 4px solid var(--vc-primary);
  border: 1px solid var(--vc-border);
}

.faq-item h3 {
  margin-bottom: var(--space-2);
  color: var(--vc-primary);
}

/* Guarantee Items */
.guarantee-item {
  padding: var(--space-4);
}

.guarantee-item h3 {
  color: var(--vc-primary);
  margin-bottom: var(--space-2);
}

/* ==========================================================================
   CARDS - Paper Texture & Torn Edges
   ========================================================================== */

.card {
  background: var(--vc-bg-light);
  color: var(--vc-fg-dark);
  padding: var(--space-4);
  position: relative;
  /* Slight rotation for handmade appearance */
  transform: rotate(-0.3deg);
  transition: transform var(--duration-base);
}

.card:hover {
  transform: rotate(0deg) scale(1.01);
}

/* Clickable Card Styling */
.card-clickable {
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: all var(--duration-base) var(--ease-natural);
  border: 2px solid transparent;
}

.card-clickable:hover {
  transform: rotate(0deg) scale(1.05) translateY(-4px);
  box-shadow: 0 8px 20px rgba(24, 99, 220, 0.15);
  border-color: var(--vc-primary);
}

.card-clickable:active {
  transform: rotate(0deg) scale(1.02) translateY(-2px);
}

/* Featured/Popular Card */
.card-featured {
  position: relative;
}

.card-featured::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--vc-primary), rgba(24, 99, 220, 0.6));
  opacity: 0.1;
  border-radius: inherit;
  z-index: -1;
}

.card h3,
.card h4 {
  color: var(--vc-fg-dark);
  margin-bottom: var(--space-2);
  font-size: var(--h4);
  font-weight: var(--fw-bold);
}

.card p {
  color: var(--vc-fg-secondary-dark);
  line-height: var(--lh-base);
  margin: 0;
}

/* Badge Styling */
.badge-popular {
  display: inline-block;
  background: var(--vc-primary);
  color: var(--vc-fg-primary);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-bottom: var(--space-2);
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Price Savings Emphasis */
.price-savings {
  color: #059669 !important;
  font-weight: var(--fw-bold) !important;
  font-size: var(--body) !important;
  margin-top: var(--space-1);
}

/* Mobile Touch Optimizations for Clickable Cards */
@media (max-width: 768px) {
  .card-clickable {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    touch-action: manipulation;
  }

  .card-clickable:active {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .card-clickable .btn {
    pointer-events: none; /* Prevent double-tap on button inside card */
  }

  .badge-popular {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.card-number {
  display: block;
  font-size: var(--h2);
  font-weight: var(--fw-black);
  color: var(--vc-primary);
  margin-bottom: var(--space-2);
  opacity: 0.3;
  transform: rotate(-2deg);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0;
  color: var(--vc-fg-secondary-dark);
}

.service-features li {
  padding-left: var(--space-4);
  position: relative;
  margin-bottom: var(--space-1);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vc-primary);
  font-weight: var(--fw-bold);
}

/* Proof Card with Torn Edge Effect */
.card-proof {
  background: var(--vc-bg-light);
  color: var(--vc-fg-dark);
  padding: var(--space-4);
  position: relative;

  /* Paper texture overlay */
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.02) 35px,
      rgba(255, 255, 255, 0.02) 70px
    );
}

.card-proof::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2Q2 0 4 2T8 2T12 2T16 2T20 2T24 2T28 2T32 2T36 2T40 2T44 2T48 2T52 2T56 2T60 2T64 2T68 2T72 2T76 2T80 2T84 2T88 2T92 2T96 2T100 2' stroke='%23E0E0E0' fill='none'/%3E%3C/svg%3E") repeat-x;
}

/* Package Card */
.card-proof blockquote {
  color: var(--vc-fg-dark);
  font-style: italic;
  margin: var(--space-2) 0;
  font-size: var(--body-lg);
  line-height: var(--lh-base);
}

.card-proof cite {
  color: var(--vc-fg-secondary-dark);
  font-style: normal;
  font-size: var(--body-sm);
  display: block;
  margin-top: var(--space-2);
}

.card-package {
  border: 2px solid var(--vc-border);
  background: var(--vc-bg-alt);
  color: var(--vc-fg-primary);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 1px) 1px,
    100% 100%,
    1px calc(100% - 1px)
  );
}

.card-package-popular {
  border-color: var(--vc-primary);
  background: linear-gradient(135deg, var(--vc-bg-alt) 0%, rgba(24, 99, 220, 0.05) 100%);
}

.card-package-popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  background: var(--vc-primary, #1863dc);
  color: var(--vc-fg-primary);
  padding: 4px 16px;
  font-size: 11px;
  letter-spacing: var(--ls-widest);
}

/* ==========================================================================
   FORMS - Imperfect Borders
   ========================================================================== */

.input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: var(--body);
  background: var(--vc-bg-light);
  border: 1.5px solid var(--vc-border-light);
  color: var(--vc-fg-dark);
  transition: all var(--duration-quick);

  /* Slight border irregularity */
  clip-path: polygon(
    0 1px,
    calc(100% - 1px) 0,
    100% calc(100% - 1px),
    1px 100%
  );
}

.input:focus {
  outline: none;
  border-color: var(--vc-primary);
  box-shadow: 0 0 0 3px rgba(24, 99, 220, 0.1);
  clip-path: none;
}

.input--error {
  border-color: var(--vc-error);
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px) rotate(-0.5deg); }
  75% { transform: translateX(4px) rotate(0.5deg); }
}

.input-group {
  position: relative;
  margin-bottom: var(--space-3);
}

.input-label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--body-sm);
  font-weight: var(--fw-medium);
  color: var(--vc-fg-secondary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.input-error {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: var(--caption);
  color: var(--vc-error);
  display: none;
}

.input--error ~ .input-error {
  display: block;
}

/* ==========================================================================
   ACCORDION - FAQ Component
   ========================================================================== */

.accordion {
  border-top: 1px solid var(--vc-border);
}

.accordion-item {
  border-bottom: 1px solid var(--vc-border);
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-3) 0;
  background: none;
  border: none;
  color: var(--vc-fg-primary);
  font-size: var(--body-lg);
  font-weight: var(--fw-medium);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-quick);
}

.accordion-trigger:hover {
  color: var(--vc-primary);
}

.accordion-trigger::after {
  content: '▶';
  font-size: 12px;
  transition: transform var(--duration-base);
  /* Slight rotation for imperfection */
  transform: rotate(-1deg);
}

.accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(89deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-natural);
}

.accordion-content[data-expanded] {
  max-height: 500px;
  padding-bottom: var(--space-3);
}

.accordion-text {
  color: var(--vc-fg-secondary);
  line-height: var(--lh-relaxed);
}

/* Problem Cards */
.problem-card {
  background: var(--vc-bg-alt);
  color: var(--vc-fg-primary);
  padding: var(--space-4);
  border-left: 3px solid var(--vc-primary);
  transform: rotate(-0.2deg);
}

.problem-card h4 {
  color: var(--vc-fg-primary);
  margin-bottom: var(--space-2);
  font-size: var(--h5);
}

.problem-card p {
  color: var(--vc-fg-secondary);
  font-size: var(--body-sm);
}

.section-subtitle {
  text-align: center;
  font-size: var(--body-lg);
  color: var(--vc-fg-secondary);
  max-width: 60ch;
  margin: 0 auto var(--space-6);
}

.hero-problem {
  font-size: var(--body-lg);
  color: var(--vc-primary);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

/* ==========================================================================
   HERO - Broken Grid Layout
   ========================================================================== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--vc-bg-main, #ffffff);
  padding-top: var(--space-1) !important;
  padding-bottom: var(--space-8) !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  /* Broken grid offset */
  margin-left: var(--offset-hero);
}

.hero-title {
  font-size: var(--h1);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-3);
  /* Slight rotation for handmade feel */
  transform: rotate(-0.2deg);
}

.hero-subtitle {
  font-size: var(--body-lg);
  color: var(--vc-fg-secondary);
  margin-bottom: var(--space-5);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.hero-trust {
  display: flex;
  gap: var(--space-3);
  font-size: var(--caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--vc-fg-muted);
}

.hero-trust span::after {
  content: '•';
  margin: 0 var(--space-2);
}

.hero-trust span:last-child::after {
  display: none;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  /* Slight rotation for anti-AI aesthetic */
  transform: rotate(0.5deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  /* Brighten the image */
  filter: brightness(1.3) contrast(1.1);
  /* Ensure visibility */
  opacity: 1;
}

/* ==========================================================================
   UTILITY CLASSES - Handmade Effects
   ========================================================================== */

/* Wonky Border */
.u-border-wonky {
  position: relative;
}

.u-border-wonky::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1.5px solid currentColor;
  clip-path: polygon(
    0 2px, 98% 0, 100% 1px, 100% 98%,
    99% 100%, 2px 100%, 0 99%, 0 2px
  );
  pointer-events: none;
}

/* Paper Texture Overlay */
.u-texture-paper {
  position: relative;
}

.u-texture-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: var(--noise-opacity);
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Print Shadow */
.u-shadow-print {
  box-shadow: 3px 3px 0 rgba(24, 99, 220, 0.15);
  transform: rotate(-0.1deg);
}

/* Hand-drawn Underline */
.u-accent-handdrawn {
  position: relative;
  display: inline-block;
}

.u-accent-handdrawn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -2px;
  right: -2px;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2Q10 0 20 2T40 2T60 2T80 2T100 2' stroke='%231863DC' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 100px 3px;
  background-repeat: no-repeat;
}

/* Brutal Box */
.u-brutal-box {
  border: 3px solid var(--vc-fg-primary);
  background: var(--vc-bg-main, #ffffff);
  box-shadow: 5px 5px 0 var(--vc-primary);
  transform: rotate(-0.5deg);
  transition: all var(--duration-base);
}

.u-brutal-box:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--vc-primary);
}

/* ==========================================================================
   MINDBODY WIDGET STYLING
   ========================================================================== */

.booking-widget-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--vc-border);
  border-radius: 8px;
}

.mindbody-widget-wrapper {
  min-height: 500px;
  padding: var(--space-4);
  background: var(--vc-bg-main, #ffffff);
  border-radius: 4px;
  position: relative;
}

/* Loading state for widget */
.mindbody-widget-wrapper::before {
  content: 'Loading booking system...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--vc-fg-secondary);
  font-size: var(--body);
  opacity: 0.6;
  pointer-events: none;
}

/* Hide loading message when widget loads */
.mindbody-widget-wrapper:has(.mindbody-widget iframe) ::before {
  display: none;
}

/* Style the Mindbody widget iframe */
.mindbody-widget {
  width: 100%;
  min-height: 600px;
}

.mindbody-widget iframe {
  width: 100% !important;
  border: none !important;
  border-radius: 4px;
  background: white;
}

/* Widget fallback styling */
.widget-fallback {
  padding-top: var(--space-3);
  border-top: 1px solid var(--vc-border);
  color: var(--vc-fg-secondary);
}

.widget-fallback a {
  color: var(--vc-primary);
  text-decoration: none;
  font-weight: var(--fw-medium);
}

.widget-fallback a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness for widget */
@media (max-width: 768px) {
  .booking-widget-container {
    padding: var(--space-4) var(--space-2);
  }

  .mindbody-widget-wrapper {
    padding: var(--space-2);
    min-height: 400px;
  }

  .mindbody-widget {
    min-height: 500px;
  }
}

/* ==========================================================================
   CONTACT SECTION STYLING
   ========================================================================== */

/* Dark theme contact section */
.contact-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(24,99,220,0.05));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-box h2 {
  font-size: var(--h2);
  margin-bottom: var(--space-6);
  text-align: center;
  color: var(--vc-fg-primary);
}

.grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

/* Left side - Contact Info */
.contact-info-box h3 {
  color: var(--vc-primary);
  font-size: var(--h4);
  margin-bottom: var(--space-4);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-method {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-method strong {
  min-width: 100px;
  color: rgba(255,255,255,0.6);
  font-size: var(--caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.contact-method a {
  color: var(--vc-fg-primary);
  text-decoration: none;
  font-size: var(--body-lg);
}

.contact-method a:hover {
  color: var(--vc-primary);
}

.contact-method address {
  font-style: normal;
  color: var(--vc-fg-primary);
  line-height: 1.5;
}

.response-time {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: rgba(255,215,0,0.1);
  border-left: 3px solid gold;
  border-radius: 4px;
}

.response-time p {
  margin: 0;
  color: rgba(255,215,0,0.9);
  font-size: var(--body-sm);
}

/* Right side - Form */
.quick-form {
  background: rgba(0,0,0,0.3);
  padding: var(--space-4);
  border-radius: 8px;
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--vc-fg-primary);
  font-size: var(--body);
  font-family: var(--font-primary);
  transition: all var(--duration-quick);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vc-primary);
  background: rgba(0,0,0,0.8);
  box-shadow: 0 0 0 2px rgba(24,99,220,0.2);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Cpath d='M6 9L2 5h8z' fill='rgba(255,255,255,0.5)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--vc-bg-main, #ffffff);
  color: var(--vc-fg-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit button refinement */
.quick-form .btn-primary {
  width: 100%;
  padding: 16px;
  background: var(--vc-primary, #1863dc);
  border: none;
  font-size: var(--body);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  transition: all var(--duration-base);
  cursor: pointer;
}

.quick-form .btn-primary:hover {
  background: var(--vc-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24,99,220,0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-box {
    padding: var(--space-4);
  }

  .grid--2 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .contact-info-box {
    margin-bottom: var(--space-4);
  }

  .contact-method {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }

  .quick-form {
    padding: var(--space-3);
  }
}