/*
Theme Name: Aurevex Order
Theme URI: https://aurevexorder.org
Author: Aurevex Order Team
Author URI: https://aurevexorder.org
Description: Custom WordPress theme for the Aurevex Order of Illuminati.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: aurevex
*/


/* Base site styles (homepage) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wpcf7 form { margin: 0; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7-not-valid-tip { color: #d4af37; font-size: 0.9em; margin-top: 6px; }

.wpcf7-list-item { margin: 0; }
.wpcf7-list-item-label { margin-left: 8px; }

/* CF7 submit button */
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  padding: 15px 50px;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.wpcf7 .submit-section { text-align: center; }

/* Make CF7 submit look like your original button */
.wpcf7 input[type="submit"] {
  display: inline-block;
  width: auto;
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  padding: 15px 50px;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Center it like your original layout */
.submit-section { text-align: center; }

/* Make CF7 radio groups match your original layout */
.radio-group .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}

.radio-group .wpcf7-list-item input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.radio-group .wpcf7-list-item-label {
  color: #c0c0c0;
}

.wpcf7 select { width: 100%; }
.wpcf7-form-control-wrap { display: block; }

/* CF7 wrappers should behave like normal blocks */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Make CF7 inputs match your original input styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  display: block;
}




.wpcf7 .wpcf7-list-item { margin: 0 0 10px 0; display: flex; align-items: center; }
.wpcf7 .wpcf7-list-item label { display: flex; align-items: center; margin: 0; }
.wpcf7 .wpcf7-list-item input[type="radio"] { width: 18px; height: 18px; margin-right: 10px; }
.wpcf7 .wpcf7-list-item-label { color: #c0c0c0; }

.wpcf7 input[type="submit"]{
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  padding: 15px 50px;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Georgia', serif;
}
body {
  font-family: 'Georgia', serif;
  color: #e0e0e0;
  line-height: 1.7;
  background: #0a0a0f;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2a2a3e;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 20, 25, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  font-size: 2em;
  color: #d4af37;
  margin-right: 15px;
}

.logo-text h1 {
  color: #d4af37;
  font-size: 1.4em;
  letter-spacing: 2px;
}

.logo-text p {
  color: #a0a0a0;
  font-size: 0.75em;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s;
}

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

.apply-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.8em;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" style="stop-color:rgb(212,175,55);stop-opacity:0.1"/><stop offset="100%" style="stop-color:rgb(212,175,55);stop-opacity:0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23grad)"/></svg>');
  background-size: cover;
  opacity: 0.3;
  animation: aurevex-pulse 8s ease-in-out infinite;
}

@keyframes aurevex-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-symbol {
  font-size: 5em;
  color: #d4af37;
  margin-bottom: 30px;
  animation: aurevex-fadeInDown 1s ease;
}

@keyframes aurevex-fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: 4em;
  color: #d4af37;
  margin-bottom: 20px;
  letter-spacing: 3px;
  animation: aurevex-fadeInUp 1s ease 0.2s both;
}

@keyframes aurevex-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.8em;
  color: #a0a0a0;
  margin-bottom: 30px;
  letter-spacing: 2px;
  animation: aurevex-fadeInUp 1s ease 0.4s both;
}

.hero-description {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.9;
  animation: aurevex-fadeInUp 1s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: aurevex-fadeInUp 1s ease 0.8s both;
}

.cta-primary {
  padding: 18px 45px;
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
  padding: 18px 45px;
  background: transparent;
  color: #d4af37;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  border: 2px solid #d4af37;
  transition: all 0.3s;
}

.cta-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Content Sections */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: #d4af37;
  font-size: 0.9em;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.8em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2em;
  color: #a0a0a0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #2a2a3e;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
  font-size: 3em;
  color: #d4af37;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.6em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.feature-description {
  color: #a0a0a0;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #c0c0c0;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #d4af37;
}

/* Values Section */
.values-section {
  background: #0f1419;
  border-top: 1px solid #2a2a3e;
  border-bottom: 1px solid #2a2a3e;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}

.value-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
}

.value-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.5em;
  color: #d4af37;
  margin-bottom: 15px;
}

.value-description {
  color: #a0a0a0;
  line-height: 1.8;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.step-card {
  position: relative;
  padding: 40px 30px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  font-size: 1.8em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.step-title {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.step-description {
  color: #a0a0a0;
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3.5em;
  color: #d4af37;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  color: #a0a0a0;
  font-size: 1.1em;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
  color: #0f1419;
  text-align: center;
  padding: 100px 40px;
}

.cta-section h2 {
  font-size: 3em;
  margin-bottom: 25px;
}

.cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .apply-btn {
  background: #0f1419;
  color: #d4af37;
  padding: 20px 50px;
  font-size: 1.3em;
}

.cta-section .apply-btn:hover {
  background: #1a1a2e;
}

/* Footer */
.footer {
  background: #0f1419;
  padding: 60px 40px 30px 40px;
  border-top: 1px solid #2a2a3e;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.3em;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #2a2a3e;
  color: #808080;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2.5em; }
  .hero-subtitle { font-size: 1.3em; }
  .hero-cta { flex-direction: column; align-items: center; }
  .section-title { font-size: 2em; }
  .features-grid, .values-grid, .process-steps { grid-template-columns: 1fr; }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* about page styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            color: #e0e0e0;
            line-height: 1.7;
            background: #0a0a0f;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a2a3e;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(15, 20, 25, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 2em;
            color: #d4af37;
            margin-right: 15px;
        }
        
        .logo-text h1 {
            color: #d4af37;
            font-size: 1.4em;
            letter-spacing: 2px;
        }
        
        .logo-text p {
            color: #a0a0a0;
            font-size: 0.75em;
            letter-spacing: 1px;
        }
        
        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }
        
        .nav-links a {
            color: #c0c0c0;
            text-decoration: none;
            font-size: 0.95em;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: #d4af37;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .apply-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
            color: #0f1419;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }
        
        /* Hero Section */
        .page-hero {
            min-height: 60vh;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 40px 80px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.1); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }
        
        .hero-symbol {
            font-size: 4em;
            color: #d4af37;
            margin-bottom: 20px;
        }
        
        .page-hero h1 {
            font-size: 3.5em;
            color: #d4af37;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        
        .page-hero p {
            font-size: 1.3em;
            color: #a0a0a0;
            line-height: 1.8;
        }
        
        /* Content Sections */
        .section {
            padding: 100px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section.alt-bg {
            background: #0f1419;
        }
        
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .section h2 {
            font-size: 2.5em;
            color: #d4af37;
            margin-bottom: 30px;
        }
        
        .section h3 {
            font-size: 1.8em;
            color: #e5c04e;
            margin-top: 50px;
            margin-bottom: 20px;
        }
        
        .section h4 {
            font-size: 1.4em;
            color: #d4af37;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        
        .section p {
            color: #c0c0c0;
            font-size: 1.1em;
            margin-bottom: 25px;
            line-height: 1.9;
        }
        
        .section ul {
            list-style: none;
            margin: 25px 0;
        }
        
        .section li {
            color: #c0c0c0;
            font-size: 1.1em;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.8;
        }
        
        .section li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #d4af37;
            font-size: 1.2em;
        }
        
        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .feature-box {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 35px;
            border-radius: 12px;
            border: 1px solid #2a2a3e;
            transition: all 0.3s;
        }
        
        .feature-box:hover {
            border-color: #d4af37;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }
        
        .feature-icon {
            font-size: 3em;
            color: #d4af37;
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            margin-top: 0;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid #d4af37;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }
        
        .highlight-box h3 {
            margin-top: 0;
            color: #d4af37;
        }
        
        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin: 60px 0;
            text-align: center;
        }
        
        .stat-item {
            padding: 30px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .stat-number {
            font-size: 3em;
            color: #d4af37;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #a0a0a0;
            font-size: 1.1em;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
            color: #0f1419;
            text-align: center;
            padding: 100px 40px;
        }
        
        .cta-section h2 {
            font-size: 3em;
            margin-bottom: 25px;
            color: #0f1419;
        }
        
        .cta-section p {
            font-size: 1.3em;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #1a1a2e;
        }
        
        .cta-section .apply-btn {
            background: #0f1419;
            color: #d4af37;
            padding: 20px 50px;
            font-size: 1.3em;
        }
        
        .cta-section .apply-btn:hover {
            background: #1a1a2e;
        }
        
        /* Footer */
        .footer {
            background: #0f1419;
            padding: 60px 40px 30px 40px;
            border-top: 1px solid #2a2a3e;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.3em;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 12px;
        }
        
        .footer-section li::before {
            display: none;
        }
        
        .footer-section a {
            color: #a0a0a0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #d4af37;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a2a3e;
            color: #808080;
        }
        
        /* Scroll Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .page-hero h1 {
                font-size: 2.2em;
            }
            
            .section h2 {
                font-size: 2em;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }

/* contact page styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .header {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px 20px;
            border-bottom: 2px solid #d4af37;
        }
        
        .header h1 {
            color: #d4af37;
            font-size: 2.5em;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .header .subtitle {
            color: #a0a0a0;
            font-size: 1.1em;
            letter-spacing: 2px;
        }
        
        .intro-section {
            background: #0f1419;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .intro-section h2 {
            color: #d4af37;
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        
        .intro-section p {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #c0c0c0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-method {
            background: #0f1419;
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .contact-method h3 {
            color: #d4af37;
            font-size: 1.4em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-method .icon {
            font-size: 1.5em;
            margin-right: 10px;
        }
        
        .contact-method p {
            color: #c0c0c0;
            margin-bottom: 10px;
        }
        
        .contact-method a {
            color: #d4af37;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .contact-method a:hover {
            color: #e5c04e;
        }
        
        .contact-form-section {
            background: #0f1419;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        
        .contact-form-section h2 {
            color: #d4af37;
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        
        .contact-form-section .subtitle {
            color: #808080;
            margin-bottom: 30px;
            font-size: 1em;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #c0c0c0;
            font-weight: 500;
        }
        
        .required {
            color: #d4af37;
        }
        
        input[type="text"],
        input[type="email"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            background: #1a1a2e;
            border: 1px solid #2a2a3e;
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 1em;
            transition: border-color 0.3s;
            font-family: 'Georgia', serif;
        }
        
        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .helper-text {
            font-size: 0.9em;
            color: #808080;
            margin-top: 5px;
            font-style: italic;
        }
        
        .submit-section {
            text-align: center;
            margin-top: 30px;
        }
        
        button[type="submit"] {
            background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
            color: #0f1419;
            padding: 15px 50px;
            border: none;
            border-radius: 4px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: 'Georgia', serif;
        }
        
        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }
        
        .privacy-note {
            background: #1a1a2e;
            padding: 20px;
            border-left: 3px solid #d4af37;
            margin-top: 40px;
            border-radius: 4px;
        }
        
        .privacy-note h3 {
            color: #d4af37;
            font-size: 1.2em;
            margin-bottom: 10px;
        }
        
        .privacy-note p {
            color: #c0c0c0;
            font-size: 0.95em;
        }
        
        .response-time {
            background: #1a1a2e;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 40px;
            text-align: center;
            border: 1px solid #2a2a3e;
        }
        
        .response-time .time {
            color: #d4af37;
            font-size: 2em;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        
        .response-time p {
            color: #c0c0c0;
            font-size: 1em;
        }

/* privacy page styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #0f1419;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #d4af37;
        }
        
        .header h1 {
            color: #d4af37;
            font-size: 2.2em;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .header .subtitle {
            color: #a0a0a0;
            font-size: 1em;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .header .last-updated {
            color: #808080;
            font-size: 0.9em;
            font-style: italic;
        }
        
        .intro {
            background: #1a1a2e;
            padding: 25px;
            border-left: 4px solid #d4af37;
            margin-bottom: 40px;
            border-radius: 4px;
        }
        
        .intro p {
            color: #c0c0c0;
            margin-bottom: 12px;
        }
        
        .intro p:last-child {
            margin-bottom: 0;
        }
        
        h2 {
            color: #d4af37;
            font-size: 1.6em;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a2a3e;
        }
        
        h3 {
            color: #e5c04e;
            font-size: 1.3em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 20px;
            color: #c0c0c0;
        }
        
        ul, ol {
            margin-bottom: 20px;
            padding-left: 30px;
            color: #c0c0c0;
        }
        
        li {
            margin-bottom: 12px;
        }
        
        strong {
            color: #e0e0e0;
        }
        
        .important-notice {
            background: #1a1a2e;
            padding: 20px;
            border: 2px solid #d4af37;
            border-radius: 4px;
            margin: 30px 0;
        }
        
        .important-notice h3 {
            color: #d4af37;
            margin-top: 0;
            font-size: 1.2em;
        }
        
        .important-notice p {
            margin-bottom: 10px;
        }
        
        .important-notice p:last-child {
            margin-bottom: 0;
        }
        
        .section-number {
            color: #d4af37;
            font-weight: bold;
            margin-right: 10px;
        }
        
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #e5c04e;
            text-decoration: underline;
        }
        
        .contact-box {
            background: #1a1a2e;
            padding: 25px;
            border-radius: 4px;
            margin-top: 40px;
            text-align: center;
        }
        
        .contact-box h3 {
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .contact-box p {
            margin-bottom: 10px;
        }
        
        .toc {
            background: #1a1a2e;
            padding: 25px;
            border-radius: 4px;
            margin-bottom: 40px;
        }
        
        .toc h3 {
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 8px;
        }
        
        .toc a {
            color: #c0c0c0;
        }
        
        .toc a:hover {
            color: #d4af37;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #1a1a2e;
        }

        th, td {
            padding: 12px;
            text-align: left;
            border: 1px solid #2a2a3e;
        }

        th {
            background: #16213e;
            color: #d4af37;
            font-weight: bold;
        }

        td {
            color: #c0c0c0;
        }

/* terms page styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.8;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: #0f1419;
            padding: 50px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid #d4af37;
        }
        
        .header h1 {
            color: #d4af37;
            font-size: 2.2em;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .header .subtitle {
            color: #a0a0a0;
            font-size: 1em;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .header .last-updated {
            color: #808080;
            font-size: 0.9em;
            font-style: italic;
        }
        
        .intro {
            background: #1a1a2e;
            padding: 25px;
            border-left: 4px solid #d4af37;
            margin-bottom: 40px;
            border-radius: 4px;
        }
        
        .intro p {
            color: #c0c0c0;
            margin-bottom: 12px;
        }
        
        .intro p:last-child {
            margin-bottom: 0;
        }
        
        h2 {
            color: #d4af37;
            font-size: 1.6em;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a2a3e;
        }
        
        h3 {
            color: #e5c04e;
            font-size: 1.3em;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        p {
            margin-bottom: 20px;
            color: #c0c0c0;
        }
        
        ul, ol {
            margin-bottom: 20px;
            padding-left: 30px;
            color: #c0c0c0;
        }
        
        li {
            margin-bottom: 12px;
        }
        
        strong {
            color: #e0e0e0;
        }
        
        .important-notice {
            background: #1a1a2e;
            padding: 20px;
            border: 2px solid #d4af37;
            border-radius: 4px;
            margin: 30px 0;
        }
        
        .important-notice h3 {
            color: #d4af37;
            margin-top: 0;
            font-size: 1.2em;
        }
        
        .important-notice p {
            margin-bottom: 10px;
        }
        
        .important-notice p:last-child {
            margin-bottom: 0;
        }
        
        .section-number {
            color: #d4af37;
            font-weight: bold;
            margin-right: 10px;
        }
        
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #e5c04e;
            text-decoration: underline;
        }
        
        .contact-box {
            background: #1a1a2e;
            padding: 25px;
            border-radius: 4px;
            margin-top: 40px;
            text-align: center;
        }
        
        .contact-box h3 {
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .contact-box p {
            margin-bottom: 10px;
        }
        
        .toc {
            background: #1a1a2e;
            padding: 25px;
            border-radius: 4px;
            margin-bottom: 40px;
        }
        
        .toc h3 {
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .toc ul {
            list-style: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 8px;
        }
        
        .toc a {
            color: #c0c0c0;
        }
        
        .toc a:hover {
            color: #d4af37;
        }

/* apply page styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #0f1419;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 20px;
        }
        
        .header h1 {
            color: #d4af37;
            font-size: 2.2em;
            margin-bottom: 10px;
        }
        
        .header p {
            color: #a0a0a0;
            font-size: 1.1em;
        }
        
        .form-section {
            margin-bottom: 35px;
        }
        
        .section-title {
            color: #d4af37;
            font-size: 1.4em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a2a3e;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            color: #c0c0c0;
            font-weight: 500;
        }
        
        .required {
            color: #d4af37;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            background: #1a1a2e;
            border: 1px solid #2a2a3e;
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 1em;
            transition: border-color 0.3s;
        }
        
        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
            font-family: 'Georgia', serif;
        }
        
        .radio-group,
        .checkbox-group {
            margin-top: 10px;
        }
        
        .radio-option,
        .checkbox-option {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        input[type="radio"],
        input[type="checkbox"] {
            margin-right: 10px;
            width: 18px;
            height: 18px;
        }
        
        .helper-text {
            font-size: 0.9em;
            color: #808080;
            margin-top: 5px;
            font-style: italic;
        }
        
        .declaration-box {
            background: #1a1a2e;
            padding: 20px;
            border-left: 3px solid #d4af37;
            margin-top: 20px;
        }
        
        .submit-section {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #2a2a3e;
        }
        
        button[type="submit"] {
            background: linear-gradient(135deg, #d4af37 0%, #c49e2e 100%);
            color: #0f1419;
            padding: 15px 50px;
            border: none;
            border-radius: 4px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }
        
        .privacy-note {
            text-align: center;
            margin-top: 20px;
            color: #808080;
            font-size: 0.9em;
        }

/* Prevent duplicate nav/footer when HTML is pasted into page content */
.entry-content .navbar,
.entry-content nav.navbar,
.entry-content #navbar,
.entry-content .footer,
.entry-content footer.footer {
  display: none !important;
}

/* Also hide duplicates if a page template outputs raw imported markup inside a wrapper */
.aurevex-page-content .navbar,
.aurevex-page-content nav.navbar,
.aurevex-page-content #navbar,
.aurevex-page-content .footer,
.aurevex-page-content footer.footer {
  display: none !important;
}
