/* 
=============================================================
  STYLESHEET: geo-aeo-expert.css
  PURPOSE   : Component styles for GEO & AEO Expert landing page
  THEME     : Aligned with Francis Joy website theme (Blue & Teal)
=============================================================
*/

:root {
  --brand:      #0a7191;       /* Theme dark blue */
  --brand-mid:  #07b1e4;       /* Theme bright blue */
  --brand-lt:   #e6f7fc;       /* Theme light blue tint */
  --accent:     #542cb7;       /* Theme purple */
  --accent-lt:  #f0ebff;       /* Theme light purple tint */
  --ink:        #222222;
  --ink-black:    #000000;
  --ink-soft:   #777777;
  --surface:    #f8f9fa;
  --border:     #eaeaea;
  --white:      #ffffff;
  --radius-sm:  5px;
  --radius-md:  8px;
  --radius-lg:  15px;
  --ff-display: "Gothic", sans-serif;
  --ff-body:    "Gothic", sans-serif;
}

/* Breadcrumb styling */
.breadcrumb-theme {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
}
.breadcrumb-theme a {
  color: var(--brand);
}
.breadcrumb-theme span {
  margin: 0 6px;
}

/* Hero Section */
.hero-section-theme {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, #0a7191 0%, #043d52 100%);
  overflow: hidden;
}
.hero-section-theme .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-section-theme h1 em {
  font-style: normal;
  color: var(--brand-mid);
}

/* Pain points cards */
.pain-card-theme {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 25px 20px;
  height: 100%;
  transition: transform .2s ease;
}
.pain-card-theme:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}
.pain-card-theme .icon {
  font-size: 28px;
  margin-bottom: 15px;
}
.pain-card-theme p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Section labels/eyebrows */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 10px;
  font-weight: 600;
}

/* Explainer (GEO vs AEO) */
.ex-card-theme {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
  border-top: 4px solid var(--brand);
  box-shadow: 0px 8px 24px rgba(0,0,0,0.06);
  transition: transform .2s ease;
}
.ex-card-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.09);
}
.ex-card-theme.aeo {
  border-top-color: var(--brand-mid);
}
.ex-tag-theme {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.ex-tag-theme.geo {
  background: rgba(10, 113, 145, 0.15);
  color: var(--brand);
}
.ex-tag-theme.aeo {
  background: rgba(7, 177, 228, 0.15);
  color: var(--brand-mid);
}
.ex-card-theme h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.ex-card-theme p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.ex-list-theme {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ex-list-theme li {
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  color: var(--ink-black);
}
.ex-list-theme li::before {
  content: "\e649";
  font-family: "Themify";
  margin-right: 4px;
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}
.ex-list-theme.aeo li::before {
  color: var(--brand-mid);
}

/* Stat Cards */
.stat-card-theme {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  background: #fff;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.03);
  transition: transform .2s ease;
}
.stat-card-theme:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.06);
}
.stat-num-theme {
  font-size: 38px;
  font-weight: 700;
  color: var(--brand-mid);
  margin-bottom: 8px;
  font-family: var(--ff-display);
}
.stat-text-theme {
  font-size: 15px;
  color: var(--ink-black);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Service Cards */
.service-card-theme {
  background: #fff;
  padding: 35px 30px;
  transition: .3s ease;
  height: 100%;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  box-shadow: 0px 8px 24px rgba(0,0,0,0.04);
}
.service-card-theme:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  transform: translateY(-3px);
  box-shadow: 0px 18px 40px 8px rgba(224, 241, 255, 0.54);
}
.service-card-theme:hover * {
  color: #fff !important;
}
.service-icon-theme {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--brand-mid);
}
.service-card-theme h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000;
  font-weight: 700;
}
.service-card-theme p {
  color: var(--ink-black);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
}

/* Process Step Cards */
.step-card-theme {
  background: rgba(255,255,255,0.05);
  padding: 35px 30px;
  transition: .3s ease;
  height: 100%;
  color: #fff;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.step-card-theme:hover {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  box-shadow: 0px 18px 40px 8px rgba(0,0,0,0.2);
}
.step-num-theme {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-weight: bold;
}
.step-card-theme h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}
.step-card-theme p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}

/* Credentials Floating Badge & Layout */
.cred-badge-float-theme {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: #fff;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 10;
}
.cred-badge-float-theme .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-mid);
  line-height: 1;
}
.cred-badge-float-theme .label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.cred-list-theme {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cred-item-theme {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  margin-bottom: 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cred-icon-theme {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(7, 177, 228, 0.15);
  color: var(--brand-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cred-info-theme strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}
.cred-info-theme span {
  font-size: 16px;
  color: var(--ink-black);
}
.award-item-theme {
  background: rgba(97, 191, 219, 0.08);
  border: 1px solid rgba(97, 191, 219, 0.25);
  border-radius: var(--radius-sm);
  padding: 15px;
  height: 100%;
}
.award-item-theme strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 4px;
}
.award-item-theme span {
  font-size: 16px;
  color: var(--ink-black);
}
.award-item-theme.featured {
  background: rgba(7, 177, 228, 0.1);
  border-color: rgba(7, 177, 228, 0.3);
}
.award-item-theme.featured strong {
  color: var(--brand-mid);
}

/* Testimonial Cards */
.testi-card-theme {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
}
.testi-stars-theme {
  color: var(--brand-mid);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text-theme {
  font-size: 16px;
  color: var(--ink-black);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-avatar-theme {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(7, 177, 228, 0.15);
  color: var(--brand-mid);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name-theme {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

/* FAQ accordion style */
.faq-list {
  margin-top: 30px;
}
.faq-item-theme {
  border-bottom: 1px solid var(--border);
}
.faq-q-theme {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q-theme:hover,
.faq-item-theme.open .faq-q-theme {
  color: var(--brand-mid);
}
.faq-q-theme .icon {
  font-size: 18px;
  color: var(--brand-mid);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item-theme.open .faq-q-theme .icon {
  transform: rotate(45deg);
}
.faq-a-theme {
  color: var(--ink-black);
  line-height: 1.8;
  padding-bottom: 20px;
  display: none;
  font-size: 15px;
}
.faq-item-theme.open .faq-a-theme {
  display: block;
}

/* Final CTA Section */
.cta-section-theme {
  background: linear-gradient(135deg, #0a7191 0%, #043d52 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-gold-theme {
  background: #fff;
  color: #0a7191;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s ease;
  border: none;
}
.btn-gold-theme:hover {
  background: #eaeaea;
  color: #0a7191;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline-theme {
  background: transparent;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: .2s ease;
}
.btn-outline-theme:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* Reveal transition animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
