/* =========================
   BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f7f3f0;
  color: #2f3e5c;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
  font-size: 15px;
  color: #4a5568;
}

ul {
  margin: 0;
  padding-left: 18px;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 44px 0;
}

/* =========================
   TYPOGRAPHY
========================= */
h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.3px;
  font-weight: 600;
}

h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero h1 {
  color: #ffffff;
}

h2 {
  margin-bottom: 20px;
  font-size: 30px;
  text-transform: uppercase;
  color: #800020;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #2f3e5c;
}

/* =========================
   BUTTON SYSTEM
========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.center-btn {
  display: flex;
  justify-content: center;
}

.btn-primary {
  background: #f7f3f0;
  color: #800020;
  border: none;
}

.btn-primary:hover {
  background: #efe7e3;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-accent {
  background: #800020;
  color: #ffffff;
  border: none;
}

.btn-accent:hover {
  background: #660018;
}

/* =========================
   HERO
========================= */
.hero {
  background: #800020;
  color: #ffffff;
  padding: 80px 0 60px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text {
  max-width: 520px;
}

.hero-name {
  margin: 8px 0;
  font-size: 18px;
}

.hero-sub {
  margin-bottom: 16px;
  font-size: 14px;
}

.hero p {
  color: #ffffff;
}

.hero .cta {
  display: flex;
  gap: 12px;
}

.hero-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-image {
  flex-shrink: 0;
}

/* =========================
   SERVICES
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card p,
.card li {
  font-size: 14px;
  color: #6b7280;
}

.card-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}

.card:hover .card-icon {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* =========================
   PROCESS
========================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.process-card {
  padding: 24px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-number {
  font-size: 36px;
  font-weight: 700;
  color: #800020;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: #4a5568;
}

/* =========================
   CTA
========================= */
.cta-section {
  background: #800020;
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}

.cta-section h2 {
  color: #ffffff;
}

.cta-section p {
  color: #f2eee8;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* =========================
   CONTACT
========================= */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  margin-bottom: 12px;
}

.form-status {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/* =========================
   STANDARDS
========================= */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.standard-item {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.standard-card:hover {
  transform: translateY(-4px);
}
/* =========================
   PROFESSIONAL CREDENTIALS
========================= */
.credentials-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.credentials-image img {
  width: 100%;
  border-radius: 10px;
}

.credentials-content h2 {
  margin-bottom: 16px;
   letter-spacing: 0.5px;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.credential-item strong {
  font-size: 16px;
  font-weight: 600;
  color: #2f3e5c;
  margin-bottom: 4px;
}

.credential-item span {
  font-size: 13px;
  color: #6b7280;
}

.credentials-content {
  border-left: 2px solid #800020;
  padding-left: 20px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.credential-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.credential-text strong {
  display: block;
}

.credential-text span {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .credentials-container {
    grid-template-columns: 1fr;
  }

  .credentials-content {
    text-align: center;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .services,
  .process-grid {
    grid-template-columns: 1fr;
  }

     .footer {
    padding: 50px 20px;
  }

  .footer h3 {
    font-size: 20px;
  }

  .footer-role {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-location {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .footer-bottom {
    font-size: 13px;
  }

}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

     .credentials-content {
    border-left: none;
    padding-left: 0;
  }

     .credential-item span {
    display: block;
    margin-top: 4px;
    line-height: 1.4;
  }

     .credentials-content h2 {
    line-height: 1.2;
  }
   
  .footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .footer-role {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-location {
    font-size: 13px;
    margin-bottom: 16px;
  }

  /* Contact row FIX */
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }

  /* Copyright */
  .footer-bottom {
    font-size: 12px;
    line-height: 1.4;
  }

   }

@media (max-width: 768px) {

  .nav-container {
    padding: 10px 16px;
  }

  .logo a {
    font-size: 14px;
  }

     .nav-links {
    display: none !important;
  }

}

/* =========================
   FOOTER (CENTERED MINIMAL)
========================= */
.footer {
  background: #800020;
  color: #ffffff;
  padding: 70px 0 40px;
  text-align: center;
}

.footer h3 {
  margin-bottom: 6px;
  color: #ffffff;
}

.footer p {
  color: #ffffff;
}

.footer-role {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer-links {
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link svg {
  flex-shrink: 0;
}

.footer-location {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 12px;
}

/* ===== FC NAVBAR (ISOLATED) ===== */

.fc-navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.fc-nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.fc-logo a {
  font-size: 15px;
  font-weight: 600;
  color: #2f3e5c;
  text-decoration: none;
}

/* NAV LINKS */
.fc-nav {
  display: flex;
  gap: 24px;
}

.fc-nav a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: 0.2s ease;
}

.fc-nav a:hover {
  color: #800020;
}

/* MOBILE */
@media (max-width: 768px) {
  .fc-nav {
    display: none;
  }
}

/* ===== TEMPLATES HERO ===== */

.fc-templates-hero {
  background: #800020;
  padding: 80px 20px 60px;
  text-align: center;
  color: #ffffff;
}

.fc-templates-hero h1 {
  color: #ffffff !important;
}

.fc-templates-hero-sub {
  color: #f8dede !important;
}

.fc-templates-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.fc-templates-hero h1 {
  font-size: 36px;
  color: #2f3e5c;
  margin-bottom: 16px;
}

.fc-templates-hero-sub {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 24px;
  line-height: 1.6;
}

.fc-templates-hero-cta {
  display: flex;
  justify-content: center;
}

.fc-templates-hero .btn-accent {
  background: #ffffff;
  color: #800020;
  border: none;
}

.fc-templates-hero .btn-accent:hover {
  background: #f3eaea;
}

@media (max-width: 768px) {

  .fc-templates-hero {
    padding: 60px 16px 40px;
  }

  .fc-templates-hero h1 {
    font-size: 26px;
  }

  .fc-templates-hero-sub {
    font-size: 14px;
  }

}

/* ===== TEMPLATE GRID ===== */

.fc-templates-section {
  background: #f7f3f0;
  padding: 70px 20px;
}

.fc-templates-container {
  max-width: 1100px;
  margin: 0 auto;
}

.fc-templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.fc-template-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: 0.2s ease;
}

.fc-template-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.fc-template-card h3 {
  font-size: 18px;
  color: #2f3e5c;
  margin-bottom: 10px;
}

.fc-template-card p {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* BUTTON */
.fc-template-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #800020;
  color: #ffffff;
  border-radius: 6px;
  font-size: 13px;
}

.fc-template-btn:hover {
  background: #5a0016;
}

/* COMING SOON */
.fc-coming-soon {
  opacity: 0.7;
  position: relative;
}

.fc-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  background: #eee;
  color: #555;
  padding: 4px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {

  .fc-templates-grid {
    grid-template-columns: 1fr;
  }

}

/* ===== WHAT'S INCLUDED ===== */

.fc-included-section {
  background: transparent;
  padding: 30px 20px 60px;
}

.fc-included-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TITLE */
.fc-included-section h2 {
  font-size: 28px;
  color: #800020;
  margin-bottom: 30px;
}

/* GRID */
.fc-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.fc-included-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 24px;
  background: #ffffff;
  transition: 0.2s ease;
}

.fc-included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* LEVEL TAG (slightly bigger as requested) */
.fc-level {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #800020;
  margin-bottom: 10px;
}

/* TEXT */
.fc-included-card h3 {
  font-size: 16px;
  color: #2f3e5c;
  margin-bottom: 8px;
}

.fc-included-card p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fc-included-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== KEY ADVANTAGES (FINAL REFINED) ===== */

.fc-diff-section {
  padding: 30px 20px 60px;
}

.fc-diff-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADING */
.fc-diff-section h2 {
  font-size: 28px;
  color: #800020;
  margin: 40px 0 24px;
}

/* GRID (NON-STRETCH) */
.fc-diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 16px;
}

/* CARD */
.fc-diff-card {
  width: 100%;
  max-width: 260px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  transition: 0.2s ease;
}

.fc-diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ICON */
.fc-diff-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 10px;
}

/* TEXT */
.fc-diff-card p {
  font-size: 14px;
  color: #2f3e5c;
  line-height: 1.5;
  margin: 0;
}

.fc-diff-card strong {
  color: inherit;
  font-weight: 600;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
  .fc-diff-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }

  .fc-diff-card {
    max-width: 100%;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .fc-diff-section {
    padding: 40px 16px 50px;
  }

  .fc-diff-section h2 {
    font-size: 24px;
    margin: 30px 0 18px;
  }

  .fc-diff-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fc-diff-card {
    max-width: 100%;
    padding: 14px 16px;
  }

  .fc-diff-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .fc-diff-card p {
    font-size: 13.5px;
    line-height: 1.4;
  }

}

/* ===== FINAL CTA ===== */

.fc-final-cta {
  background: #800020;
  padding: 50px 20px;
  text-align: center;
}

.fc-final-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.fc-final-cta h2 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 14px;
}

.fc-final-cta-sub {
  color: #f3eaea;
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* BUTTONS */
.fc-final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* PRIMARY (matches your system) */
.fc-final-cta .btn-primary {
  background: #ffffff;
  color: #800020;
}

.fc-final-cta .btn-primary:hover {
  background: #f3eaea;
}

/* SECONDARY */
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* MOBILE */
@media (max-width: 768px) {

  .fc-final-cta {
    padding: 50px 16px;
  }

  .fc-final-cta h2 {
    font-size: 24px;
  }

  .fc-final-cta-sub {
    font-size: 14px;
  }

  .fc-final-cta-buttons {
    flex-direction: column;
  }

  .fc-final-cta-buttons a {
    width: 100%;
  }

}
