/* =============================================
   plushpops.com — Global Styles
   Colors: #004D40, #00796B, #26A69A, #80CBC4, #E0F2F1
   Fonts: Sora (headings) + Figtree (body)
============================================= */

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

/* ---- CSS Variables ---- */
:root {
  --clr-primary: #004D40;
  --clr-secondary: #00796B;
  --clr-accent: #26A69A;
  --clr-light: #80CBC4;
  --clr-pale: #E0F2F1;
  --clr-white: #FFFFFF;
  --clr-dark: #0D1B1A;
  --clr-text: #1C2B29;
  --clr-muted: #5a7272;
  --clr-border: #b2dfdb;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --radius-card: 20px;
  --radius-btn: 8px;
  --shadow-card: 0 8px 32px rgba(0,77,64,0.12);
  --shadow-hover: 0 16px 48px rgba(0,77,64,0.22);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1240px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--clr-text); font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section--pale { background: var(--clr-pale); }
.section--dark { background: var(--clr-primary); color: var(--clr-white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--clr-light); }
.section--dark p { color: rgba(255,255,255,0.85); }

.section__header { text-align: center; margin-bottom: 3rem; }
.section__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.section__title { margin-bottom: 1rem; }
.section__desc { color: var(--clr-muted); max-width: 640px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--clr-secondary);
  color: var(--clr-white);
  border-color: var(--clr-secondary);
}
.btn--primary:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,77,64,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--clr-secondary);
  border-color: var(--clr-secondary);
}
.btn--outline:hover {
  background: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn--white:hover {
  background: var(--clr-pale);
  transform: translateY(-2px);
}
.btn--lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ---- Cards ---- */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.card--dark h3, .card--dark h4 { color: var(--clr-light); }
.card--dark p { color: rgba(255,255,255,0.8); }
.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card__tag {
  display: inline-block;
  background: var(--clr-pale);
  color: var(--clr-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.card--dark .card__tag { background: rgba(38,166,154,0.2); color: var(--clr-light); }

/* ---- Header / Nav ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 30, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38,166,154,0.2);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo span { color: var(--clr-accent); }
.logo__dot { color: var(--clr-accent); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--clr-light);
  background: rgba(38,166,154,0.12);
}

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--clr-primary);
  border: 1px solid rgba(38,166,154,0.25);
  border-radius: 12px;
  min-width: 200px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 500;
}
.nav__dropdown a:hover { background: rgba(38,166,154,0.15); color: var(--clr-light); }

.nav__cta { margin-left: 1rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--clr-primary);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(38,166,154,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(38,166,154,0.12);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
}
.mobile-nav a:hover { color: var(--clr-light); }

/* Page offset for fixed header */
.page-offset { padding-top: 72px; }

/* ---- Hero Shared ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-primary);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,26,0.85) 0%, rgba(0,77,64,0.7) 60%, rgba(38,166,154,0.3) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 85vh;
}
.hero__text { padding: 4rem 0; }
.hero__badge {
  display: inline-block;
  background: rgba(38,166,154,0.2);
  border: 1px solid rgba(38,166,154,0.4);
  color: var(--clr-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: var(--font-head);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__title { color: var(--clr-white); margin-bottom: 1.25rem; }
.hero__title span { color: var(--clr-light); }
.hero__desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__image-wrap {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(38,166,154,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__title { color: var(--clr-white); margin-bottom: 1rem; }
.page-hero__desc { color: rgba(255,255,255,0.8); max-width: 600px; }
.page-hero__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-light); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--clr-white); }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.9); font-size: 0.85rem; }

/* ---- Grid layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ---- Stats ---- */
.stat-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--clr-accent);
}
.stat-card__number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card__label { color: var(--clr-muted); font-size: 0.9rem; font-weight: 500; }

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--clr-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: var(--transition);
}
.faq-question:hover { background: var(--clr-pale); }
.faq-question.active { background: var(--clr-pale); color: var(--clr-secondary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--clr-pale);
  color: var(--clr-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}
.faq-question.active .faq-icon { background: var(--clr-accent); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer__inner { padding: 0 1.5rem 1.5rem; color: var(--clr-muted); line-height: 1.7; }

/* ---- Tabs ---- */
.tabs__nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  border-radius: 8px 8px 0 0;
}
.tab-btn:hover { color: var(--clr-secondary); }
.tab-btn.active { color: var(--clr-secondary); border-bottom-color: var(--clr-secondary); background: var(--clr-pale); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-pale));
}
.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 3px solid var(--clr-accent);
  box-shadow: 0 0 0 4px rgba(38,166,154,0.15);
}
.timeline__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.timeline__title { margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline__desc { color: var(--clr-muted); font-size: 0.9rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand .logo { margin-bottom: 1rem; }
.footer__desc { font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer__heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--clr-light); padding-left: 4px; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer__contact-icon { color: var(--clr-accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: var(--clr-light); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--clr-primary);
  border-top: 2px solid var(--clr-accent);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  flex: 1;
  min-width: 250px;
}
.cookie-banner__text a { color: var(--clr-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--clr-accent);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cookie-btn-accept:hover { background: var(--clr-secondary); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ---- Live Chat Widget ---- */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
}
.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-secondary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,77,64,0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-toggle:hover { background: var(--clr-primary); transform: scale(1.1); }
.chat-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: none;
  overflow: hidden;
}
.chat-box.open { display: flex; flex-direction: column; }
.chat-header {
  background: var(--clr-primary);
  color: white;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.chat-header__title { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.chat-header__status { font-size: 0.78rem; color: var(--clr-light); }
.chat-messages {
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chat-msg {
  background: var(--clr-pale);
  padding: 0.6rem 0.9rem;
  border-radius: 12px 12px 12px 0;
  font-size: 0.85rem;
  color: var(--clr-text);
  max-width: 85%;
}
.chat-msg.user {
  background: var(--clr-secondary);
  color: white;
  border-radius: 12px 12px 0 12px;
  align-self: flex-end;
}
.chat-input-wrap {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--clr-border);
}
.chat-input {
  flex: 1;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--clr-accent); }
.chat-send {
  background: var(--clr-secondary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.chat-send:hover { background: var(--clr-primary); }

/* ---- Blog Article ---- */
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--clr-text);
}
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; color: var(--clr-secondary); }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 4px solid var(--clr-accent);
  padding: 1rem 1.5rem;
  background: var(--clr-pale);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ---- Form ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(38,166,154,0.15); }
.form-control.error { border-color: #e53935; }
.form-error { color: #e53935; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.form-error.show { display: block; }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

/* ---- Table ---- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}
.data-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.data-table tr:hover td { background: var(--clr-pale); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-card); box-shadow: var(--shadow-card); }

/* ---- Comparison Table ---- */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  background: var(--clr-primary);
  color: white;
  padding: 1rem 1.5rem;
  font-family: var(--font-head);
}
.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  text-align: center;
}
.comparison-table tr:nth-child(even) td { background: var(--clr-pale); }
.check { color: var(--clr-secondary); font-size: 1.2rem; }
.cross { color: #e53935; font-size: 1.2rem; }

/* ---- Team ---- */
.team-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--clr-white);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card__img { width: 100%; height: 260px; object-fit: cover; }
.team-card__body { padding: 1.5rem; }
.team-card__name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--clr-primary); margin-bottom: 0.25rem; }
.team-card__role { color: var(--clr-accent); font-size: 0.88rem; font-weight: 500; }

/* ---- Badge / Achievement ---- */
.badge-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--clr-white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.badge-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.badge-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.badge-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.badge-text p { font-size: 0.85rem; color: var(--clr-muted); margin: 0; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--clr-pale);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { color: var(--clr-muted); font-style: italic; margin-bottom: 1.25rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--clr-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--clr-muted); }

/* ---- Download Resource ---- */
.download-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--clr-white);
  border-radius: 14px;
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}
.download-item:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-card); }
.download-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--clr-pale);
  color: var(--clr-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.download-info { flex: 1; }
.download-info h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.download-info p { font-size: 0.82rem; color: var(--clr-muted); margin: 0; }

/* ---- Floating Action Buttons ---- */
.fab-group {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 700;
}
.fab {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  color: var(--clr-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  text-decoration: none;
}
.fab:hover { background: var(--clr-secondary); color: white; border-color: var(--clr-secondary); transform: scale(1.1); }

/* ---- Partners Logos ---- */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}
.partner-logo {
  padding: 0.75rem 1.5rem;
  background: var(--clr-pale);
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-secondary);
  opacity: 0.7;
  transition: var(--transition);
}
.partner-logo:hover { opacity: 1; background: var(--clr-white); box-shadow: var(--shadow-card); }

/* ---- Map ---- */
.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-container iframe { display: block; width: 100%; }

/* ---- Business Hours ---- */
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
}
.hours-day { font-weight: 600; color: var(--clr-primary); font-family: var(--font-head); }
.hours-time { color: var(--clr-muted); }
.hours-time.open { color: var(--clr-secondary); font-weight: 500; }
.hours-time.closed { color: #e53935; }

/* ---- Chart container ---- */
.chart-container { position: relative; height: 340px; }

/* ---- Portfolio ---- */
.portfolio-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.portfolio-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: var(--transition); }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,30,26,0.9), transparent);
  padding: 1.5rem;
  transform: translateY(8px);
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { color: white; margin-bottom: 0.25rem; }
.portfolio-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0; }

/* ---- Tags ---- */
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.3rem 0.85rem;
  background: var(--clr-pale);
  color: var(--clr-secondary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-head);
  transition: var(--transition);
}
.tag:hover { background: var(--clr-accent); color: white; }

/* ---- Share buttons ---- */
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
  transition: var(--transition);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-muted);
  cursor: pointer;
}
.share-btn:hover { border-color: var(--clr-accent); color: var(--clr-secondary); background: var(--clr-pale); }

/* ---- Comments ---- */
.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.comment-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.comment-author { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--clr-primary); }
.comment-date { font-size: 0.8rem; color: var(--clr-muted); margin-left: 0.75rem; }
.comment-body { margin-top: 0.5rem; font-size: 0.9rem; color: var(--clr-muted); }

/* ---- Newsletter CTA ---- */
.newsletter-cta {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--radius-card);
  padding: 3rem;
  text-align: center;
  color: white;
}
.newsletter-cta h3 { color: white; margin-bottom: 0.75rem; }
.newsletter-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.newsletter-input {
  flex: 1;
  max-width: 340px;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
}

/* ---- Animations ---- */
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
@keyframes slideUp { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }

.fade-in { animation: fadeIn 0.6s ease forwards; }
.slide-up { animation: slideUp 0.7s ease forwards; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__split { grid-template-columns: 1fr; }
  .hero__image-wrap { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  nav .nav__list { display: none; }
  nav .nav__cta { display: none; }
  .burger { display: flex; }
  .fab-group { display: none; }
  .grid-4 { grid-template-columns: 1fr; }
  .newsletter-cta { padding: 2rem 1.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .chat-box { width: 290px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-white { color: var(--clr-white) !important; }
.text-accent { color: var(--clr-accent); }
.text-muted { color: var(--clr-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.neon-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--clr-accent), var(--clr-light));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
