/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
  /* Core Framework Theme Colors */
  --color-bg: #061224;
  --color-bg-soft: #0e2340;
  --color-surface: rgba(255, 255, 255, 0.92);
  --color-surface-strong: #ffffff;
  --color-text: #0f172a;
  --color-text-soft: #61708a;
  --color-primary: #1f7cf2;
  --color-primary-2: #0ea5e9;
  --color-border: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 45px rgba(2, 12, 27, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 2rem));
  --transition: 0.3s ease;

  /* Marketing Wheel Component Variables */
  --font-sans: 'Inter', sans-serif;
  --text-dark: #0f172a;
  --text-muted: #61708a;
  --c-purple: #6366f1;
  --c-green: #22c55e;
  --c-red: #ef4444;
  --c-orange: #f97316;
  --c-yellow: #eab308;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: linear-gradient(135deg, #f7fbff 0%, #eef2f7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

/* ==========================================================================
   2. REUSABLE UTILITIES & LAYOUT
   ========================================================================== */
.container { width: var(--container); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
}
.section-heading h2, .about-content h2, .faq-grid h2, .cta-card h2 { font-size: clamp(2rem, 3vw, 2.75rem); 
  margin: 0 0 1rem; color: var(--color-bg); 
}
.section-heading p, .about-content p, .faq-grid p, .cta-card p, .page-hero p { color: var(--color-text-soft); }

/* Buttons & Badges */
.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
  box-shadow: 0 15px 30px rgba(31,124,242,0.28);
}
.btn--whatsapp {
  background: #fff;
  color: #16a34a;
  border: 2px solid #22c55e;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: .3s;
}
.btn--whatsapp:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

/* Base Grids & Cards */
.about-grid, .contact-grid, .faq-grid { 
  display: grid; grid-template-columns: 1fr 1fr; 
  gap: 2rem; align-items: center; 
}
.about-media, .contact-card, .faq-list { 
  position: relative;
 }
.about-media img, .contact-card { 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  box-shadow: var(--shadow); 
}
.about-content { 
  padding: 1rem 0; 
}
.feature-grid, .service-grid, .counter-grid { 
  display: grid; 
  gap: 1.25rem; 
}
.feature-grid { 
  grid-template-columns: repeat(2, minmax(0,1fr)); 
}

.feature-card, .service-card, .testimonial-card, .process-item, .contact-card, .faq-item, .counter-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card, .service-card, .process-item, .counter-item { 
  padding: 1.5rem;
 }
.feature-card:hover, .service-card:hover, .process-item:hover, .counter-item:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 24px 50px rgba(2,12,27,0.16); 
}

/* Floating Elements & Controls */
.floating-card {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}
.floating-card strong { 
  font-size: 1.7rem; color: var(--color-primary);
 }
.filter-group { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.8rem; 
  justify-content: center; 
  margin-bottom: 2rem;
 }
.filter-btn { 
  border: 0; 
  border-radius: 999px; 
  padding: 0.7rem 1rem; 
  background: #e9f2ff; 
  color: var(--color-bg);
  cursor: pointer; 
  font-weight: 600; 
}
.filter-btn.active { 
  color: #fff;
   background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
   }

/* Sticky Widget Actions */
.back-to-top { 
   position: fixed;
   right: 1.2rem; 
   bottom: 1.2rem; 
   width: 48px; 
   height: 48px; 
   border: 0; 
   border-radius: 50%; 
   background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2)); 
   color: #fff; 
   box-shadow: var(--shadow); 
   cursor: pointer; 
   opacity: 0; 
   pointer-events: none; 
   transition: var(--transition); 
   z-index: 80; 
  }
.back-to-top.show { 
  opacity: 1; 
  pointer-events: auto; 
}
.floating-actions { 
  position: fixed; 
  right: 1.2rem; 
  bottom: 5.4rem; 
  display: grid; 
  gap: 0.8rem; 
  z-index: 70; 
}
.fab { 
  width: 50px; 
  height: 50px; 
  display: grid; 
  place-items: center; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.8); 
  box-shadow: var(--shadow); 
  backdrop-filter: blur(12px); 
  transition: transform var(--transition);
 }
.fab:hover { 
  transform: translateY(-3px);
 }

/* ==========================================================================
   3. INDIVIDUAL WEBSITE SECTIONS
   ========================================================================== */

/* Hero Section */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, rgba(6,18,36,0.94), rgba(15,41,71,0.88));
  color: #fff;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(31,124,242,0.4), transparent 45%);
  pointer-events: none;
}
.page-hero .container {
   position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); margin: 0 0 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 700px; }

/* About Section */
.about-section {
   padding: 100px 0; 
   background: #fff; 
  }
.about-top { 
  display: grid; 
  grid-template-columns: 1fr 1fr; gap: 80px; 
  align-items: center; 
}
.section-tag { 
  display: block; 
  letter-spacing: 4px; 
  font-size: 12px; 
  color: #777; 
  margin-bottom: 15px;
 }
.about-left h2 { 
  font-size: 56px; 
  margin-bottom: 20px;
  font-weight: 700; 
}
.about-left h2 span {
   color: #2563eb;
   }
.line { 
  width: 120px; 
  height: 3px; 
  background: #2563eb; 
  margin: 20px 0; 
}
.about-left p { 
  color: #666; 
  line-height: 1.9; 
  margin-bottom: 18px; 
  font-size: 17px; 
}
.read-more { 
  color: #2563eb; 
  font-weight: 700; 
}
.aim-box { 
  display: flex; 
  align-items: center; 
  gap: 35px;
 }
.aim-box h3 { 
  font-size: 60px;
  white-space: nowrap;
   }
.aim-box h3 span { 
  color: #ff3f57;
 }
.vertical-line { 
  width: 2px; 
  height: 120px; 
  background: #d9d9d9;
 }
.aim-content p { 
  color: #666; 
  font-size: 22px; 
  margin-bottom: 10px; 
}
.about-cta { 
  text-align: center; 
  margin: 70px 0; 
}
.cta-btn {
   display: inline-flex; 
   align-items: center; 
   gap: 15px; 
   padding: 18px 45px; 
   background: #ff3f57; 
   color: #fff; 
   border-radius: 50px;
   font-size: 20px; 
   font-weight: 600; 
   transition: .35s;
   }
.cta-btn:hover { 
  background: #2563eb; 
}
.about-stats { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 30px; 
  text-align: center; 
}
.stat-box { 
  padding: 20px;
 }
.stat-box i { 
  font-size: 42px; 
  color: #222; 
  margin-bottom: 20px; 
}
.stat-box h3 { 
  font-size: 38px; 
  margin-bottom: 8px; 
}
.stat-box p { 
  color: #666; 
}

/* Services Section */
.services-section { padding: 90px 0; 
  background: #f8fbff; 
}
.service-grid { display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px; 
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card { 
  background: #fff; 
  padding: 35px 30px; 
  border-radius: 18px; 
  border: 1px solid #edf2f7; 
  box-shadow: 0 10px 35px rgba(0,0,0,.08); 
  transition: .35s; 
  display: flex;
  flex-direction: column;
}
.service-card h3, .process-item h3, .contact-card h3 {
   margin: 0 0 0.7rem; 
   color: var(--color-bg); 
  }
.service-card p, .process-item p, .counter-item span, .testimonial-card p, .faq-item p, .contact-card p {
   color: var(--color-text-soft);
   }
.service-icon { 
  width: 70px; 
  height: 70px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background: linear-gradient(135deg, #2563eb, #0ea5e9); 
  color: #fff; 
  border-radius: 18px; 
  font-size: 30px; 
  margin-bottom: 25px; 
}
.service-card h3 { 
  font-size: 24px; 
  margin-bottom: 15px; 
  color: #111827; 
}
.service-card p { 
  color: #64748b; 
  line-height: 1.8; 
  margin-bottom: 22px;
  flex-grow: 1;
 }
.service-card a { 
  color: #2563eb; 
  font-weight: 700; 
  text-decoration: none; 
  transition: .3s; 
  align-self: center;
}
.service-card a:hover, .service-card:hover a {
   color: #0ea5e9;
   transform: translateX(4px);
  }
.hidden-service { 
  display: none; 
}
.load-more-wrap { 
  text-align: center; 
  margin-top: 55px; 
}
.load-more-btn {
   background: linear-gradient(135deg, #2563eb, #0ea5e9); 
   color: #fff; 
   border: none; 
   padding: 16px 45px; 
   border-radius: 50px; 
   font-size: 17px; 
   font-weight: 700; 
   cursor: pointer; 
   transition: .35s; 
   box-shadow: 0 12px 30px rgba(37,99,235,.25); 
  }
.load-more-btn:hover {
   transform: translateY(-3px); 
   box-shadow: 0 18px 40px rgba(37,99,235,.35);
   }

/* Step Workflow / Process Section */
.process-section { 
  background: #061826; 
  padding: 120px 0; 
  position: relative; 
  overflow: hidden; 
}
.section-title { 
  text-align: center; 
  margin-bottom: 80px; 
}
.section-title span { 
  color: #ff1e74; 
  font-size: 15px; 
  font-weight: 700; 
  letter-spacing: 3px; 
}
.section-title h2 { 
  color: #0f172a; 
  font-size: 58px; 
  font-weight: 700; 
  margin: 20px 0; 
}
.section-title h2 span { 
  color: #2563eb; 
  font-weight: 700; 
}
.section-title p { 
  color: #64748b; 
  font-size: 20px; 
}

/* Alt BG / Dark section overrides */
.alt-bg {
  background: #0b0f19 !important;
}
.alt-bg .section-title h2 {
  color: #ffffff;
}
.alt-bg .section-title p {
  color: #cbd5e1;
}
.alt-bg .section-title span {
  color: #38bdf8;
}
.process-wrapper { 
  position: relative;
 }
.process-wrapper::before { 
  content: ""; 
  position: absolute; 
  left: 50%; 
  top: 0; 
  bottom: 0; 
  width: 3px; 
  background: #ff1e74; 
  transform: translateX(-50%); 
}
.process-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  gap: 100px; 
  margin-bottom: 90px; 
  position: relative; 
}
.process-row.reverse { 
  direction: rtl; 
}
.process-row.reverse .process-card { 
  direction: ltr;
 }
.process-card { 
  background: #122231; 
  padding: 40px; 
  border-radius: 25px; 
  color: white; 
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
 }
.step-number { 
  width: 70px; 
  height: 70px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, #ff0080, #8a2be2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 26px; 
  font-weight: bold; 
  margin-bottom: 25px; 
}
.process-card h3 { 
  font-size: 34px; 
  margin-bottom: 15px; 
}
.process-card p { 
  color: #b9c4d2; 
  line-height: 1.8; 
  margin-bottom: 25px; 
}
.tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 15px; 
}
.tags span { 
  padding: 12px 22px; 
  background: #243647; 
  border-radius: 50px; 
  font-size: 15px; 
}
.process-image { 
  text-align: center; 
}
.process-image img {
   max-width: 420px;
    width: 100%;
   }

/* Global Button Layout Wrappers */
.button-container { 
  display: flex; 
  justify-content: center; 
  width: 100%; 
  margin: 30px 0; 
}
.project-button { 
  display: inline-flex; 
  align-items: center; 
  padding: 18px 45px; 
  font-size: 22px; 
  font-weight: 600; 
  color: white; 
  background: linear-gradient(to right, #ff4d6d, #d156fe); 
  border: none; 
  border-radius: 50px; 
  cursor: pointer; 
  outline: none; 
  text-decoration: none; 
  box-shadow: 0 10px 30px rgba(209, 86, 254, 0.3); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.project-button .arrow { 
  margin-left: 10px; 
  font-size: 26px; 
  transition: transform 0.2s ease; 
}
.project-button:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 15px 35px rgba(209, 86, 254, 0.5); 
}
.project-button:hover .arrow { 
  transform: translateX(5px); 
}

/* ==========================================================================
   4. NEW DESIGN COMPONENT: MARKETING WHEEL DISPLAY 
   ========================================================================== */
.wheel-section { 
  padding: 100px 0; 
  background-color: #f8fafc;
   font-family: var(--font-sans); 
   overflow: hidden; 
  }
.wheel-section .container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}
.section-title-wrap { 
  text-align: center; 
  margin-bottom: 80px; 
}
.wheel-main-title { 
  font-size: 2.5rem; 
  font-weight: 400; 
  color: #ef4444; 
  word-spacing: 4px; 
}

.wheel-display-container { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto; 
  gap: 40px 20px; 
  position: relative; 
  margin-top: 40px; 
}
.central-brand-hub { 
  grid-column: 2 / 5; 
  grid-row: 2; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  z-index: 10; 
  padding-top: 20px; 
}
.hub-logo-box { 
  background: #ffffff; 
  padding: 30px 50px; 
  border-radius: 40px 40px 0 0; 
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); 
  text-align: center; 
  border: 1px solid rgba(15, 23, 42, 0.05); 
  min-width: 280px; 
}
.brand-tech { 
  font-size: 2rem; 
  font-weight: 800; 
  color: #ef4444; 
}
.brand-centrica { 
  font-size: 2rem; 
  font-weight: 800; 
  color: #0f2942; 
}
.brand-sub { 
  font-size: 0.65rem; 
  letter-spacing: 2px; 
  font-weight: 700; 
  color: #64748b; 
  margin: 5px 0 0 0; 
}

.wheel-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  position: relative; 
  z-index: 5; 
}
.node-1 {
   grid-column: 1; 
   grid-row: 2; 
  }
.node-2 { 
  grid-column: 2; 
  grid-row: 1; 
  transform: translateY(30px); 
}
.node-3 { 
  grid-column: 3; 
  grid-row: 1; 
  transform: translateY(-10px); 
}
.node-4 { 
  grid-column: 4; 
  grid-row: 1; 
  transform: translateY(30px); 
}
.node-5 { 
  grid-column: 5; 
  grid-row: 2;
}

.node-icon-box { 
  width: 75px;
   height: 75px; 
   border-radius: 50%; 
   display: flex; 
   align-items: center; 
   justify-content: center; 
   margin-bottom: 20px; 
   color: white; 
   font-weight: 700; 
   font-size: 1.5rem; 
   box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
   transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
  }
.wheel-node:hover .node-icon-box { 
  transform: scale(1.15);
 }

.bluewheel{ 
  color:#061224; 
  font: weight 700px; 
  font-size: 2,5rem;
}

.color-purple { 
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
 }
.color-green  { 
  background: linear-gradient(135deg, #10b981, #22c55e); 
}
.color-red    { 
  background: linear-gradient(135deg, #f43f5e, #ef4444);
 }
.color-orange { 
  background: linear-gradient(135deg, #f97316, #ea580c); 
}
.color-yellow { 
  background: linear-gradient(135deg, #eab308, #ca8a04); 
}

.node-content h3 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--text-dark); 
  margin: 0 0 10px 0; 
}
.node-content p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  line-height: 1.6; 
  margin: 0; 
  }
.text-center { 
text-align: center; 
}

@media (min-width: 993px) {
  .text-left-md {
     text-align: left; 
     align-items: flex-start; 
    }
  .text-right-md { 
    text-align: right; 
    align-items: flex-end; 
  }
  .node-1, .node-2 { 
    align-items: flex-start; 
  }
  .node-4, .node-5 { 
    align-items: flex-end; 
  }
}

/* ==========================================================================
   5. RESPONSIVE MEDIA QUERIES (ADAPTED & INTEGRATED)
   ========================================================================== */
@media (max-width: 1200px) {
  .hero__content { 
    gap: 1.5rem; 
  }
  .process-grid { 
  grid-template-columns: repeat(3, minmax(0,1fr));
 }
  .service-grid { 
  grid-template-columns: repeat(2, minmax(0,1fr)); 
}
}

@media (max-width: 992px) {
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .testimonial-slider, .counter-grid, .service-grid, .product-grid, .industry-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  
  .about-top { grid-template-columns: 1fr; gap: 50px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .aim-box { flex-direction: column; align-items: flex-start; }
  .vertical-line { display: none; }
  .about-left h2, .aim-box h3 { font-size: 42px; }

  /* Wheel Component Mobile Adaptations */
  .wheel-display-container { grid-template-columns: 1fr; grid-template-rows: auto; gap: 40px; }
  .node-1, .node-2, .node-3, .node-4, .node-5 { grid-column: 1 !important; grid-row: auto !important; transform: none !important; flex-direction: row; gap: 25px; align-items: center; text-align: left; }
  .node-content { text-align: left !important; }
  .node-icon-box { margin-bottom: 0; flex-shrink: 0; }
  .central-brand-hub { grid-column: 1; grid-row: 1; padding-top: 0; margin-bottom: 20px; }
  .hub-logo-box { border-radius: 20px; width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .hero { min-height: auto; }
  .hero__content { min-height: auto; padding-top: 6rem; padding-bottom: 4rem; }
  .hero__stats { margin-top: 1rem; }
  
  .services-section { padding: 70px 0; }
  .section-heading h2 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px 25px; }
  .load-more-btn { width: 100%; }
}

@media (max-width: 991px) {
  .process-wrapper::before { display: none; }
  .process-row { grid-template-columns: 1fr; gap: 40px; }
  .process-row.reverse { direction: ltr; }
  .section-title h2 { font-size: 40px; }
  .process-image img { max-width: 300px; }
}

@media (max-width: 576px) {
  .container { width: min(100% - 1.25rem, 1180px); }
  .service-grid, .product-grid, .industry-grid, .counter-grid, .testimonial-slider, .process-grid, .feature-grid { grid-template-columns: 1fr; }
  .hero__actions, .nav-actions { width: 100%; }
  .hero__actions .btn, .nav-actions .btn { width: 100%; }
  .cta-card { padding: 2rem 1.3rem; }
  .contact-card { padding: 1.25rem; }
  .floating-actions { right: 0.8rem; bottom: 4.7rem; }
  .back-to-top { right: 0.8rem; bottom: 0.8rem; }
  
  .about-stats { grid-template-columns: 1fr; }
  .cta-btn, .project-button { width: 100%; justify-content: center; }
}

@media (max-width: 425px) {
  .hero__text h1 { font-size: 2rem; }
  .section-heading h2, .about-content h2, .faq-grid h2, .cta-card h2 { font-size: 1.8rem; }
}

@media (max-width: 375px) {
  .hero__text p { font-size: 0.95rem; }
}

@media (max-width: 320px) {
  .brand__text { font-size: 0.95rem; }
}


/* ==========================================================================
   TESTIMONIALS ARCHITECTURE (IMAGE STYLE LOOKALIKE)
   ========================================================================== */
.testimonials-section-v2 {
  padding: 100px 0;
  background-color: #f5eedf; /* Beautiful organic layout warmth */
  background-image: radial-gradient(circle at top right, rgba(214,196,170,0.3) 0%, transparent 60%);
  font-family: 'Inter', sans-serif;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.test{ display: flex; 
  justify-content: center; 
  font-size: 1.5rem; 
  font-weight: 400; 
  color: #4a3e3d; 
  letter-spacing: 3px;
}

/* Header Component Details */
.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-main-title {
  font-size: 2.85rem;
  letter-spacing: 5px;
  font-weight: 300;
  color: #4a3e3d;
  margin: 0 0 10px 0;
}

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.heart-divider::before,
.heart-divider::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #c9b097;
  margin: 0 15px;
}

.heart-icon {
  color: #c9b097;
  font-size: 1.2rem;
}

.testimonials-subtitle {
  font-size: 1.15rem;
  color: #706361;
  line-height: 1.5;
  font-weight: 400;
}

/* Card Grid Engine */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.t-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 30px 35px 30px;
  box-shadow: 0 12px 35px rgba(112, 99, 97, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(112, 99, 97, 0.12);
}

/* Profile Elements Positioning */
.t-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.t-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-stars {
  color: #dcae1d;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.t-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #ebd9cb;
  height: 25px;
  margin-bottom: 5px;
}

.t-body {
  font-size: 0.98rem;
  color: #5c504f;
  line-height: 1.7;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.t-divider {
  width: 100%;
  height: 1px;
  background-color: #f2e6dc;
  margin-bottom: 20px;
}

.t-author {
  width: 100%;
}

.t-name {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #382f2e;
  margin: 0 0 5px 0;
}

.t-role {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #9c8e8c;
  font-weight: 600;
}

/* Bottom Ribbon Strip */
.testimonials-footer-banner {
  background-color: #ebe0cf;
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-heart-badge {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9b097;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.testimonials-footer-banner p {
  margin: 0;
  font-size: 1.05rem;
  color: #574c4a;
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE DESIGN CORRECTIONS
   ========================================================================== */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-main-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 650px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-footer-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}


/* ==========================================================================
   ORGANIC LAYOUT ACCORDION STYLES
   ========================================================================== */
.premium-faq-section {
  padding: 100px 0;
  background-color: #faf9f6; /* Soft organic linen color profile */
  position: relative;
  overflow: hidden;
}

/* Background Leaf Decorative Accent Position Mimic */
.premium-faq-section::before {
  content: "🌿";
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 8rem;
  opacity: 0.12;
  transform: rotate(45deg);
  pointer-events: none;
}

.faq-inner-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* FAQ Header Component Layout */
.faq-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #eef3ef;
  color: #3f5e4d;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.badge-icon {
  background-color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.faq-main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0f2537;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.faq-main-title .accent-serif {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  color: #4a6b53; /* Deep soft sage color code */
}

/* Leaf Design Divider Construction */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background-color: #d1dacd;
}

.leaf-icon {
  font-size: 1.1rem;
  color: #8fa492;
}

.faq-description {
  font-size: 1.15rem;
  color: #556270;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accordion Grid Construction */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(15, 37, 55, 0.02);
  border: 1px solid rgba(143, 164, 146, 0.12);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 10px 30px rgba(15, 37, 55, 0.05);
  border-color: rgba(143, 164, 146, 0.25);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  position: relative;
}

/* Left Icon Badge Configuration */
.faq-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f3f6f3;
  color: #4a6b53;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f2537;
  flex-grow: 1;
  padding-right: 20px;
}

/* Chevron State Engine */
.chevron-arrow {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

.chevron-arrow::before,
.chevron-arrow::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 10px;
  height: 2px;
  background-color: #728495;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.chevron-arrow::before {
  left: 3px;
  transform: rotate(45deg);
}

.chevron-arrow::after {
  right: 3px;
  transform: rotate(-45deg);
}

/* Panel Body Transition Architecture */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-content {
  padding: 0 24px 28px 88px; /* Perfectly aligns content text to skip past the icon badge */
  position: relative;
}

/* subtle accent line above the text panel */
.faq-panel-content::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 88px;
  right: 24px;
  height: 1px;
  background-color: #f1f4f1;
}

.faq-panel-content p {
  margin: 0;
  font-size: 1.05rem;
  color: #556270;
  line-height: 1.7;
}

/* Active State Interactive Adjustments */
.faq-accordion-item.active {
  border-color: rgba(74, 107, 83, 0.2);
  box-shadow: 0 12px 35px rgba(74, 107, 83, 0.06);
}

.faq-accordion-item.active .faq-icon-badge {
  background-color: #4a6b53;
  color: #ffffff;
}

.faq-accordion-item.active .chevron-arrow::before {
  transform: rotate(-45deg);
  background-color: #4a6b53;
}

.faq-accordion-item.active .chevron-arrow::after {
  transform: rotate(45deg);
  background-color: #4a6b53;
}

/* Responsive Corrections */
@media (max-width: 600px) {
  .faq-trigger {
    padding: 20px;
  }
  .faq-icon-badge {
    width: 36px;
    height: 36px;
    margin-right: 14px;
  }
  .faq-icon-badge svg {
    width: 16px;
    height: 16px;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-panel-content {
    padding: 0 20px 20px 70px;
  }
  .faq-panel-content::before {
    left: 70px;
  }
}





/* Shared Category Filter Styles */
.filter-section {
  margin-top: 5.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.filter-header {
  margin-bottom: 2.2rem;
  text-align: center;
}

.filter-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #061b3a;
  margin-top: 0.5rem;
}

.filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 auto;
}

.filter-btn {
  background: #ffffff;
  color: #60708a;
  border: 1px solid rgba(11, 44, 92, 0.08);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(6, 27, 58, 0.02);
}

.filter-btn:hover,
.filter-btn.active {
  background: #1677f8;
  color: #ffffff;
  border-color: #1677f8;
  box-shadow: 0 8px 20px -6px rgba(22, 119, 248, 0.4);
}

/* Global Layout & Badges helpers */
.center {
  text-align: center;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 2.6rem;
}

.section-intro.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  background: linear-gradient(135deg, rgba(22, 119, 248, 0.08), rgba(54, 182, 255, 0.08));
  color: #1677f8;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(22, 119, 248, 0.15);
  margin-bottom: 1.1rem;
}

/* Back Button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    margin-bottom: 2rem;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(-3px);
}

.btn-back i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-back:hover i {
    transform: translateX(-2px);
}

/* Brand Color Utilities */
.text-blue { color: #3b82f6 !important; }
.text-indigo { color: #6366f1 !important; }
.text-purple { color: #a855f7 !important; }
.text-violet { color: #8b5cf6 !important; }
.text-amber { color: #f59e0b !important; }
.text-orange { color: #f97316 !important; }
.text-red { color: #ef4444 !important; }
.text-teal { color: #14b8a6 !important; }
.text-emerald { color: #10b981 !important; }
.text-rose { color: #f43f5e !important; }
.text-pink { color: #ec4899 !important; }
.text-cyan { color: #06b6d4 !important; }
.text-yellow { color: #eab308 !important; }
.text-green { color: #22c55e !important; }
.text-fuchsia { color: #d946ef !important; }