/* ---------- CSS RESET & NORMALIZE ---------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAF9F7;
  color: #222A37;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
*:focus {
  outline: 2px solid #F8B195;
  outline-offset: 2px;
}

/* ---------- BRAND TYPOGRAPHY ---------- */
:root {
  --primary: #355C7D;
  --secondary: #6C5B7B;
  --dark: #222A37;
  --accent: #F8B195;
  --muted-bg: #F7F6F3;
  --white: #FFFFFF;
  --shadow: 0 4px 20px 0 rgba(34, 42, 55, 0.07);
  --radius: 12px;
  --serif: 'Georgia', 'Times New Roman', Times, serif;
  --sans: 'Roboto', Arial, sans-serif;
  --display: 'Montserrat', 'Georgia', serif;
}
body {
  font-family: var(--serif);
  font-size: 16px;
  background: var(--muted-bg);
  color: var(--dark);
  font-feature-settings: 'liga' 1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display), var(--serif);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: 2.75rem; letter-spacing: -1px; }
h2 { font-size: 2rem; letter-spacing: -0.5px; margin-bottom: 12px; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1.125rem; font-weight: 500; margin-bottom: 8px; }
p, ul, li {
  font-family: var(--serif);
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  font-family: var(--sans);
  margin-bottom: 24px;
  letter-spacing: .1px;
}
strong {
  color: var(--primary);
  font-weight: bold;
}
blockquote {
  border-left: 4px solid var(--primary);
  margin: 24px 0 24px 0;
  padding: 16px 20px 8px 20px;
  font-size: 1.15rem;
  background: var(--white);
  color: var(--secondary);
  font-style: italic;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
blockquote p { margin-bottom: 8px; }
cite {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--primary);
  font-style: normal;
  font-weight: 500;
}

/* ---------- CONTAINER & LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .section, section { padding: 25px 8px; }
  .content-wrapper, .text-image-section { flex-direction: column; gap: 18px; }
}

/* ---------- HEADER/NAVIGATION ---------- */
header {
  background: var(--white);
  box-shadow: 0 1px 12px 0 rgba(34, 42, 55, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--display);
  font-size: 1.08rem;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--dark);
}
header .btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 28px;
  font-size: 1.05rem;
  font-family: var(--display);
  background: var(--accent);
  color: var(--dark);
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(53,92,125,0.03);
  transition: background .15s, box-shadow .2s, color .18s;
  font-weight: 600;
  border: none;
}
header .btn-primary:hover,
header .btn-primary:focus {
  background: var(--primary);
  color: var(--white);
}

/* ---------- MOBILE NAVIGATION ---------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--dark);
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 40px;
  position: relative;
  z-index: 51;
  border: none;
  cursor: pointer;
  transition: background .18s, color .16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: var(--primary); color: var(--white); }
@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  header .btn-primary { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(242, 238, 233, 0.96);
  box-shadow: -5px 0 30px 0 rgba(53,92,125,0.14);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.35,.4,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 9px 20px 9px 12px;
  margin-bottom: 10px;
  cursor: pointer;
  align-self: flex-end;
  transition: color .17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--accent); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
  align-items: flex-end;
  padding: 22px 28px 0 18px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 1.17rem;
  font-family: var(--display);
  color: var(--dark);
  border-bottom: 1px solid #ece7e7;
  transition: color .14s, background .15s;
  border-radius: 0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  border-radius: 4px;
}
@media (min-width: 1050px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* ---------- HERO, CARDS, FEATURES ---------- */
.hero {
  background: linear-gradient(90deg, #F8B19508 0%, #FFFDFB 100%);
  min-height: 320px;
  border-radius: var(--radius);
  margin-top: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.hero .container {
  align-items: center;
  padding: 44px 20px 44px 20px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 22px 26px 22px;
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 330px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.feature img { height: 46px; margin-bottom: 12px; }
.feature h3 { font-size: 1.25rem; margin-bottom: 5px; }
@media (max-width: 950px) {
  .features .feature-grid { flex-direction: column; gap: 18px; }
}

/* ---------- ARTICLES INDEX ---------- */
.articles .content-wrapper {
  gap: 24px;
  align-items: stretch;
}
.article-preview {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(53,92,125,0.07);
  padding: 26px 20px 22px 20px;
  flex: 1 1 290px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .16s, box-shadow .19s;
}
.article-preview a {
  color: var(--accent);
  font-weight: 600;
}
.article-preview:hover,
.article-preview:focus-within {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 6px 28px 0 rgba(53,92,125,0.10);
}
.article-preview h3 {
  margin-bottom: 8px;
}
@media (max-width: 820px) {
  .articles .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* ---------- SERVICES PREVIEW ---------- */
.services-preview .content-wrapper,
.services-overview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(53,92,125,0.06);
  padding: 30px 22px 24px 22px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
.service-card .price {
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
  font-family: var(--display);
  letter-spacing: .2px;
}
.services-overview .service-list { margin-bottom: 24px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials, .service-testimonials {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 64px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 16px 22px;
  background: #F7F6F3;
  border-radius: var(--radius);
  box-shadow: 0 1px 6px rgba(53,92,125,0.08);
  margin-bottom: 20px;
  flex: 1 1 290px;
  min-width: 220px;
  max-width: 400px;
  color: var(--dark);
}
.testimonial-card p {
  font-style: italic;
  color: #33313B;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.testimonial-card .client {
  color: var(--primary);
  font-family: var(--display);
  font-size: 1rem;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------- BUTTONS ---------- */
.btn, a.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 24px;
  font-size: 1.09rem;
  font-family: var(--display);
  padding: 11px 32px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .17s, transform .14s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(253, 179, 149, 0.07);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  letter-spacing: .5px;
}
.btn-accent:hover,
.btn-accent:focus {
  background: var(--primary);
  color: var(--white);
}

/* ---------- NEWSLETTER ---------- */
.newsletter .content-wrapper {
  gap: 40px;
  align-items: center;
}
.newsletter-description {
  flex: 2 1 340px;
  font-size: 1.09rem;
}
.newsletter .btn-accent {
  min-width: 220px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--muted-bg);
  padding: 50px 0 40px 0;
  font-size: .97rem;
  box-shadow: 0 -2px 18px 0 rgba(53,92,125,0.02);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  color: var(--secondary);
  opacity: 0.75;
  font-size: 1rem;
  transition: color .16s, opacity .11s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.brand-footer img {
  height: 38px;
}
.brand-footer .tagline {
  font-family: var(--display);
  color: var(--primary);
  opacity: .76;
  margin-top: 9px;
  font-size: 1rem;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-top: 15px;
  }
}

/* ---------- CARDS CONTAINER, FLEX PATTERNS ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 260px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 800px) {
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
}

/* ---------- POLICY, LEGAL & THANK-YOU SECTIONS ---------- */
.policy-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 24px;
}
.thank-you-section {
  background: #EFE8E4;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 16px;
}
.thank-you-section .btn-primary {
  margin-top: 18px;
}

/* ---------- COOKIES BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1090;
  width: 100vw;
  background: var(--white);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 32px rgba(34, 42, 55, 0.09);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 1rem;
  opacity: 1;
  transition: transform .38s cubic-bezier(.45,.4,.1,1);
}
.cookie-banner.hidden {
  transform: translateY(120%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  padding: 9px 22px;
  font-family: var(--display);
  font-weight: 600;
  cursor: pointer;
  margin-right: 3px;
  transition: background .18s, color .13s;
}
.cookie-accept-all { background: var(--primary); color: var(--white); }
.cookie-accept-all:hover, .cookie-accept-all:focus { background: var(--accent); color: var(--primary); }
.cookie-reject-all { background: var(--white); color: var(--primary); border: 1px solid var(--primary); }
.cookie-reject-all:hover, .cookie-reject-all:focus { background: var(--primary); color: var(--white); }
.cookie-settings-btn { background: var(--accent); color: var(--primary); }
.cookie-settings-btn:hover, .cookie-settings-btn:focus { background: var(--primary); color: var(--white); }
/* Responsive cookie banner */
@media (max-width: 670px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 13px 9px 13px 10px; align-items: flex-start; }
  .cookie-banner .cookie-btns { width: 100%; justify-content: flex-start; }
}

/* ----- Cookie Modal / Preferences Popup ----- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,42,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1150;
  pointer-events: all;
  opacity: 1;
  transition: opacity .36s cubic-bezier(.45,.4,.1,1);
}
.cookie-modal.hidden {
  opacity: 0; pointer-events: none;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 13px 56px 0 rgba(53, 92, 125, 0.15);
  padding: 38px 30px 26px 30px;
  min-width: 320px;
  max-width: 97vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--serif);
  color: var(--dark);
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.cookie-modal-content ul {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #EEE;
}
.cookie-toggle {
  min-width: 36px;
  min-height: 22px;
  border: none;
  border-radius: 16px;
  background: #EBEBEB;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background .17s;
}
.cookie-toggle .circle {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 100%;
  position: absolute;
  left: 2px; top: 1px;
  transition: left .18s cubic-bezier(.47,.5,.25,1);
}
.cookie-toggle.active { background: var(--accent); }
.cookie-toggle.active .circle {
  background: var(--accent);
  left: 14px;
}
.cookie-toggle[aria-disabled="true"], .cookie-toggle[disabled] {
  opacity: .6;
  pointer-events: none;
}
.cookie-modal-bottom {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 8px;
  transition: background .13s, color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--white);
}

/* ---------- PAGE SPECIFIC: ABOUT ---------- */
.about-brand, .about-team, .about-philosophy {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 22px 34px 22px;
  margin-bottom: 42px;
  box-shadow: var(--shadow);
}
.about-brand h1, .about-team h2, .about-philosophy h2 { color: var(--primary); }
.about-team, .about-philosophy {
  padding: 32px 18px;
}
.about-brand ul, .about-team ul {
  list-style: square inside;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .about-brand, .about-team, .about-philosophy {
    padding: 20px 6px 20px 8px;
    margin-bottom: 26px;
  }
}

/* ---------- ARTICLES PAGE ---------- */
.articles-hero {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px 0 34px 0;
  margin-bottom: 38px;
}
.article-categories, .popular-articles {
  background: #F2EEEA;
  border-radius: var(--radius);
  padding: 31px 17px 23px 17px;
  margin-bottom: 30px;
}
.article-list {
  padding-left: 7px;
  margin-bottom: 14px;
}
.article-list li a {
  color: var(--primary);
  font-weight: 500;
  transition: color .13s;
}
.article-list li a:hover, .article-list li a:focus {
  color: var(--accent);
}
.filters {
  margin-top: 10px;
  font-size: .99rem;
  color: var(--primary);
}
.filter {
  background: var(--white);
  color: var(--accent);
  border-radius: 8px;
  padding: 2px 12px;
  margin-left: 6px;
  font-size: .96rem;
  border: 1px solid var(--accent);
  transition: background .12s, color .13s;
}
.filter:hover, .filter:focus {
  background: var(--accent);
  color: var(--white);
}

/* ---------- OBICEIURI SANATOASE PAGE ---------- */
.section-hero {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 36px;
}
.guides, .resources {
  background: #FAF9F7;
  border-radius: var(--radius);
  box-shadow: none;
}
.guide-list, .resources ul {
  list-style: disc inside;
  margin-left: 3px;
  margin-bottom: 10px;
}

/* ---------- MOTIVATIE PAGE ---------- */
.motivation-tips .tips-list {
  list-style: disc inside;
  margin-bottom: 15px;
}
.cta-area {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 36px;
  margin-bottom: 45px;
  padding: 32px 20px 32px 20px;
  text-align: center;
}
.cta-area h2, .cta-area p {
  color: var(--dark);
}
.cta-area .btn-accent {
  min-width: 220px;
  margin-top: 12px;
}

/* ---------- CONCENTRARE & MINDFULNESS ---------- */
.mindfulness-practices .practice-list, .focus-tips .focus-article-list {
  list-style: disc inside;
  margin-bottom: 10px;
}
.focus-tips .text-section {
  margin-top: 10px;
}
.focus-tips .btn-secondary { margin-top: 10px; }

/* ---------- CONTACT PAGE ---------- */
.contact-hero {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 22px;
  margin-bottom: 30px;
}
.contact-details-section .content-wrapper {
  gap: 50px;
}
.contact-details, .opening-hours {
  background: #F2EEEA;
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: 0 1px 7px rgba(53,92,125,0.06);
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 14px;
}
.contact-details h2, .opening-hours h2 {
  margin-bottom: 8px;
}
.location .address-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 14px;
  gap: 10px;
}

/* ---------- PROCESS STEPS / ACCORDION ---------- */
.process-steps {
  background: #F8F7F4;
  border-radius: var(--radius);
  padding: 21px 14px 14px 27px;
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 1.06rem;
  gap: 13px;
  display: flex;
  flex-direction: column;
}
.process-steps li {
  margin-bottom: 4px;
}
.service-details-accordion ul {
  margin-bottom: 0;
  padding-left: 3px;
}

/* ---------- GENERAL ANIMATIONS ---------- */
html { scroll-behavior: smooth; }
section, .section, .card, .feature, .service-card, .policy-section, .thank-you-section, .about-brand, .about-team, .about-philosophy {
  animation: fadeInAppear .85s cubic-bezier(.55,0,.19,1.18);
}
@keyframes fadeInAppear {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.button-pulse {
  animation: pulseBtn 1.7s infinite cubic-bezier(.71,0,.25,1);
}
@keyframes pulseBtn {
  0% { box-shadow: 0 2px 8px 0 rgba(53,92,125,0.09); }
  60% { box-shadow: 0 0px 32px 8px rgba(248,177,149,0.17); }
  100% { box-shadow: 0 2px 8px 0 rgba(53,92,125,0.09); }
}

/* ---------- ADDITIONAL: DESKTOP HOVERS ---------- */
@media (min-width: 820px) {
  .btn-primary, .btn-secondary, .btn-accent, .mobile-menu-toggle {
    will-change: background, color, box-shadow, transform;
  }
  .btn:hover, .btn:focus, a.btn:hover, a.btn:focus {
    transform: translateY(-1.5px) scale(1.03);
    box-shadow: 0 5px 18px 0 rgba(53,92,125,0.09);
  }
  .service-card:hover, .feature:hover {
    box-shadow: 0 7px 30px 0 rgba(53,92,125,0.12);
    transform: translateY(-2px) scale(1.0135);
    z-index: 2;
  }
}

/* ---------- UTILITY CLASSES ---------- */
.d-none { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: #888; }
.rounded { border-radius: var(--radius); }
.shadow { box-shadow: var(--shadow); }

@media (max-width: 480px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.12rem; }
  section, .section { padding: 14px 3px; }
}

/* ---------- END CSS ---------- */
