/* styles.css - Non-critical CSS */
:root {
  --navy: #0D1B2A;
  --gold: #C9A84C;
  --light-blue: #1B2A47;
  --text-white: #F8F9FA;
  --text-muted: #ADB5BD;
  --neon-blue: #00E5FF;
}

/* Animations */
@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.5); }
  50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.8); }
  100% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.5); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Base styles that are safe to load asynchronously */
.section-padding {
  padding: 4rem 1.5rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-2 { grid-template-columns: 1fr; }

@media (min-width: 1024px) {
  .grid-cols-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Secondary CTA Button */
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

@media (min-width: 1024px) {
  .btn-secondary {
    width: auto;
  }
}

/* Image styling */
.img-responsive {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.8s ease-out;
}

/* Constrain hero images on sub-pages */
.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-img-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Grid image constraints */
.grid-cols-2 img {
  max-width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

.order-2-mobile img {
  max-width: 500px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
}

/* Typography Enhancements */
h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Trust Badges specific */
.trust-badges img {
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* Testimonials */
.testimonial {
  background: var(--light-blue);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  margin-bottom: 1.5rem;
}

.testimonial p {
  color: var(--text-white);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial span {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* FAQ Accordion Base Styling */
.faq-item {
  background: var(--light-blue);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: #08111a;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

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