/*
Theme Name: Elite2Way Child
Template: astra
Version: 1.0
Description: Elite 2 Way Radios custom child theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Force full-width override for Astra containers */
.ast-container,
.ast-separate-container .ast-article-single,
.ast-separate-container #primary,
#primary, .site-main, .entry-content,
.ast-plain-container .site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.entry-content > * {
  max-width: 100%;
  width: 100%;
}
.ast-separate-container .ast-article-single {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Announcement Bar */
.announcement-bar {
  background: #1E6FD9;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
}

/* Sticky Nav */
.site-header {
  background: #0A1628;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 40px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}
.site-logo {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.main-nav {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: white;
}
.nav-cta {
  background: #1E6FD9;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
}

/* Primary Buttons */
.btn-primary {
  background: #1E6FD9;
  color: white;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1557b0;
  color: white;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin-left: 16px;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

/* WooCommerce button overrides */
.single_add_to_cart_button,
.woocommerce .button,
.woocommerce a.button {
  background: #1E6FD9 !important;
  color: white !important;
  border-radius: 6px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  border: none !important;
}
.single_add_to_cart_button:hover,
.woocommerce .button:hover,
.woocommerce a.button:hover {
  background: #1557b0 !important;
}
.woocommerce .price {
  color: #1E6FD9 !important;
  font-weight: 600 !important;
}

/* Hero */
.hero-section {
  background: #0A1628;
  color: white;
  padding: 100px 40px;
  text-align: center;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero-section p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Trust Bar */
.trust-bar {
  background: #0d1e38;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar span {
  color: #a0b4d0;
  font-size: 14px;
  font-weight: 500;
}
.trust-bar span::before {
  content: "\2713  ";
  color: #1E6FD9;
}

/* Section Styles */
.section-white {
  background: white;
  padding: 80px 40px;
}
.section-gray {
  background: #f8f9fa;
  padding: 80px 40px;
}
.section-navy {
  background: #0A1628;
  color: white;
  padding: 80px 40px;
}
.section-blue {
  background: #1E6FD9;
  color: white;
  padding: 80px 40px;
  text-align: center;
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 60px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 40px 30px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: #1E6FD9;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Use Cases Grid */
.use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.use-card {
  background: white;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.use-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.use-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.use-card p {
  color: #666;
  font-size: 15px;
}

/* Comparison Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 800px;
  margin: 0 auto;
}
.compare-table th {
  padding: 16px;
  text-align: center;
  font-weight: 600;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.compare-table th.elite-col {
  background: rgba(30,111,217,0.3);
  color: #7eb8ff;
  border-radius: 8px 8px 0 0;
}
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.compare-table td.elite-col {
  background: rgba(30,111,217,0.15);
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.testi-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid #1E6FD9;
}
.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
.testi-name {
  font-weight: 600;
  color: #0A1628;
}

/* CTA Section */
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Footer */
.site-footer {
  background: #0A1628;
  color: white;
  padding: 60px 40px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-tagline {
  color: #7eb8ff;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #7eb8ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: white;
}
.footer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e8ecf0;
  padding: 20px 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #0A1628;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.faq-answer {
  display: none;
  padding-top: 16px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}
.faq-answer.open {
  display: block;
}
.faq-chevron {
  font-size: 20px;
  color: #1E6FD9;
  transition: transform 0.2s;
}
.faq-question.active .faq-chevron {
  transform: rotate(180deg);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Guarantee Banner */
.guarantee-banner {
  background: #0A1628;
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-grid,
  .use-grid,
  .testimonials-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-section h1 {
    font-size: 32px;
  }
  .hero-section {
    padding: 60px 20px;
  }
  .section-white,
  .section-gray,
  .section-navy,
  .section-blue {
    padding: 60px 20px;
  }
  .trust-bar {
    gap: 16px;
    padding: 20px;
  }
  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }
  .hero-section div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .compare-table {
    font-size: 13px;
  }
  .compare-table td,
  .compare-table th {
    padding: 10px 8px;
  }
  .site-header {
    padding: 0 20px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #0A1628;
    padding: 20px 40px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .section-title {
    font-size: 28px;
  }
}