/* === Modern Font: Inter === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
* { font-family: 'Inter', sans-serif !important; }
h1, h2, h3, h4, h5, h6, .elementor-heading-title {
	  font-family: 'Inter', sans-serif !important;
}

/* === Center About Us Section === */
#anm-about .anm-expert-inner {
	  justify-content: center !important;
}
#anm-about .anm-label {
	  justify-content: center !important;
}
#anm-about .anm-h2 {
	  text-align: center !important;
	  margin-left: auto !important;
	  margin-right: auto !important;
}
#anm-about .anm-desc {
	  text-align: center !important;
	  margin-left: auto !important;
	  margin-right: auto !important;
}
#anm-about .anm-expert-list {
	  display: block;
	  margin-left: auto !important;
	  margin-right: auto !important;
	  width: fit-content;
	  text-align: left;
}
#anm-about .anm-btn-gold {
	  display: block !important;
	  margin-left: auto !important;
	  margin-right: auto !important;
	  width: fit-content;
}
}
}
}
}
}
}
}

/* === Jetpack Form Restyling: Dark Navy/Gold Theme === */

/* Form card: dark navy background */
.anm-form-card {
  background: linear-gradient(160deg, #0d1b2a 0%, #192f50 100%) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  border-radius: 12px !important;
  padding: 40px 48px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
}

/* Form title */
.anm-form-card h3,
.anm-form-card .anm-form-title {
  color: #c9a84c !important;
  text-align: center !important;
  margin-bottom: 24px !important;
}

/* Labels: white/light text */
.anm-form-card .contact-form label,
.anm-form-card .grunion-field-label,
.anm-form-card .wp-block-jetpack-contact-form label,
.anm-form-card label {
  color: #e8dfc8 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* Input fields: dark with gold border */
.anm-form-card input[type="text"],
.anm-form-card input[type="email"],
.anm-form-card input[type="tel"],
.anm-form-card input[type="number"],
.anm-form-card textarea,
.anm-form-card select,
.anm-form-card .grunion-field,
.anm-form-card .contact-form-field {
  background-color: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
}

.anm-form-card input[type="text"]:focus,
.anm-form-card input[type="email"]:focus,
.anm-form-card input[type="tel"]:focus,
.anm-form-card textarea:focus,
.anm-form-card select:focus {
  border-color: #c9a84c !important;
  background-color: rgba(201, 168, 76, 0.08) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
}

/* Dropdown selects: dark background with gold arrow */
.anm-form-card select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9a84c' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  cursor: pointer !important;
}

/* Select dropdown options */
.anm-form-card select option {
  background-color: #192f50 !important;
  color: #ffffff !important;
}

/* Textarea: taller */
.anm-form-card textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Phone input special handling */
.anm-form-card .jetpack-contact-form__phone-select-country {
  background-color: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 6px 0 0 6px !important;
  color: #ffffff !important;
  padding: 12px 8px !important;
}

.anm-form-card .jetpack-contact-form__phone-input {
  border-left: none !important;
  border-radius: 0 6px 6px 0 !important;
}

/* Submit button: gold with dark text */
.anm-form-card .wp-block-button__link,
.anm-form-card button[type="submit"],
.anm-form-card input[type="submit"] {
  background-color: #c9a84c !important;
  color: #0d1b2a !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  margin-top: 8px !important;
}

.anm-form-card .wp-block-button__link:hover,
.anm-form-card button[type="submit"]:hover {
  background-color: #e8c96a !important;
  transform: translateY(-1px) !important;
}

/* Placeholder text */
.anm-form-card input::placeholder,
.anm-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Form field spacing */
.anm-form-card .grunion-field-wrap,
.anm-form-card .contact-form-field-wrap {
  margin-bottom: 18px !important;
}

/* Required asterisk */
.anm-form-card .required {
  color: #c9a84c !important;
}

/* Success/error messages */
.anm-form-card .contact-form-submission {
  color: #c9a84c !important;
  background: rgba(201, 168, 76, 0.1) !important;
  border: 1px solid rgba(201, 168, 76, 0.4) !important;
  border-radius: 6px !important;
  padding: 16px !important;
  text-align: center !important;
}

/* === ANM NEW SECTIONS CSS (Part 5) === */
.anm-expert{background:#fff;border:1px solid #e5e0d8;border-radius:12px;padding:2rem;margin:2rem 0;display:flex;gap:2rem;align-items:flex-start;max-width:900px;margin-left:auto;margin-right:auto;}
.anm-expert-photo-wrap{flex-shrink:0;}
.anm-expert-photo{width:100px;height:100px;border-radius:50%;border:3px solid #B8963E;object-fit:cover;display:block;}
.anm-expert-body{flex:1;}
.anm-expert-label{display:block;font-size:10px;font-weight:700;color:#B8963E;text-transform:uppercase;letter-spacing:.8px;margin-bottom:.5rem;font-family:Arial,sans-serif;}
.anm-expert-name{display:block;font-size:20px;font-weight:700;color:#0C2340;margin-bottom:.25rem;font-family:Arial,sans-serif;}
.anm-expert-title{display:block;font-size:12px;color:#B8963E;font-weight:600;margin-bottom:.875rem;font-family:Arial,sans-serif;text-transform:uppercase;letter-spacing:.3px;}
.anm-expert-bio{font-size:15px;color:#444;line-height:1.75;margin-bottom:1rem;font-family:Georgia,serif;}
.anm-expert-creds{display:grid;grid-template-columns:1fr 1fr;gap:4px 16px;margin-bottom:1rem;}
.anm-expert-cred{font-size:12px;color:#555;font-family:Arial,sans-serif;display:flex;align-items:center;gap:4px;}
.anm-expert-btn{display:inline-block;background:#B8963E;color:#fff!important;font-size:13px;font-weight:700;padding:10px 20px;border-radius:8px;text-decoration:none;font-family:Arial,sans-serif;}
.anm-market{background:#f8f6f2;border-radius:12px;padding:2.5rem 2rem;margin:2rem 0;max-width:900px;margin-left:auto;margin-right:auto;}
.anm-market-label{font-size:10px;font-weight:700;color:#B8963E;text-transform:uppercase;letter-spacing:.8px;margin-bottom:.75rem;font-family:Arial,sans-serif;}
.anm-market-title{font-size:22px;font-weight:700;color:#0C2340;margin:0 0 .75rem;line-height:1.3;font-family:Arial,sans-serif;}
.anm-market-sub{font-size:15px;color:#555;line-height:1.7;margin:0 0 1.5rem;font-family:Georgia,serif;}
.anm-stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-bottom:1.5rem;}
@media(max-width:640px){.anm-stats-grid{grid-template-columns:1fr 1fr;}}
.anm-stat{background:#fff;border:1px solid #e5e0d8;border-radius:10px;padding:1rem;text-align:center;border-top:3px solid #B8963E;}
.anm-stat-value{font-size:22px;font-weight:700;color:#0C2340;font-family:Arial,sans-serif;margin-bottom:4px;}
.anm-stat-label{font-size:11px;color:#555;font-family:Arial,sans-serif;line-height:1.4;margin-bottom:4px;}
.anm-stat-source{font-size:10px;color:#aaa;font-family:Arial,sans-serif;}
.anm-chart-wrap{background:#fff;border-radius:10px;border:1px solid #e5e0d8;padding:1.25rem;margin-bottom:1.25rem;}
.anm-chart-header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem;margin-bottom:.75rem;}
.anm-chart-title{font-size:13px;font-weight:700;color:#0C2340;font-family:Arial,sans-serif;}
.anm-chart-legend{display:flex;gap:12px;}
.anm-chart-legend span{display:flex;align-items:center;gap:4px;font-size:11px;color:#666;font-family:Arial,sans-serif;}
.anm-dot{width:9px;height:9px;border-radius:2px;display:inline-block;flex-shrink:0;}
.anm-chart-source{font-size:10px;color:#aaa;margin-top:10px;font-family:Arial,sans-serif;line-height:1.4;}
.anm-market-cta{background:#0C2340;border-radius:10px;padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;}
.anm-market-cta-text{font-size:14px;font-weight:500;color:#fff;font-family:Arial,sans-serif;}
.anm-market-cta-sub{font-size:12px;color:rgba(255,255,255,.75);font-family:Arial,sans-serif;margin-top:3px;}
.anm-market-cta-btn{background:#B8963E;color:#fff!important;font-size:13px;font-weight:700;padding:10px 20px;border-radius:8px;text-decoration:none;display:inline-block;font-family:Arial,sans-serif;white-space:nowrap;}
.anm-reviews{background:#fff;border-radius:12px;padding:2.5rem 2rem;margin:2rem 0;max-width:900px;margin-left:auto;margin-right:auto;}
.anm-reviews-label{font-size:10px;font-weight:700;color:#B8963E;text-transform:uppercase;letter-spacing:.8px;margin-bottom:.75rem;font-family:Arial,sans-serif;}
.anm-reviews-title{font-size:20px;font-weight:700;color:#0C2340;margin:0 0 1.5rem;line-height:1.3;font-family:Arial,sans-serif;}
.anm-reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:1rem;}
@media(max-width:640px){.anm-reviews-grid{grid-template-columns:1fr;}}
.anm-review{background:#f8f6f2;border-radius:10px;padding:1.25rem;border-top:3px solid #B8963E;}
.anm-review-stars{color:#B8963E;font-size:16px;margin-bottom:.625rem;}
.anm-review-text{font-size:13px;color:#444;line-height:1.65;font-family:Georgia,serif;margin:0 0 .75rem;}
.anm-review-author{font-size:11px;color:#888;font-family:Arial,sans-serif;font-weight:600;text-transform:uppercase;letter-spacing:.4px;}
.anm-reviews-disclaimer{font-size:11px;color:#bbb;font-family:Arial,sans-serif;margin:0;}
@media(max-width:600px){.anm-expert{flex-direction:column;}.anm-expert-photo{width:80px;height:80px;}}

/* === Hide site title and tagline from header === */
.site-title,
.site-description,
.site-branding {
  display: none !important;
}