/* ========================================================
   CSS RESET & BASE - Elegant Classic Style for Quino CarCare
   ======================================================== */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #232323;
  background-color: #FAFAFA;
  min-height: 100vh;
}
ol, ul {
  list-style: inside disc;
  margin: 0 0 1.2em 0;
  padding: 0;
}
a {
  background: none;
  color: #183153;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.4,0,.2,1);
}
a:focus {
  outline: 2px dotted #183153;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', serif;
  color: #183153;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.16; }
h2 { font-size: 2rem; line-height: 1.18; }
h3 { font-size: 1.375rem; line-height: 1.22; }
h4 { font-size: 1.125rem; line-height: 1.25; }
p, ul, ol, li {
  font-family: 'Open Sans', serif;
  color: #3C3C3C;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
strong { font-weight: 600; color: #1B2232; }
img { max-width: 100%; display: block; border: none; }
table { border-collapse: collapse; width: 100%; margin-bottom: 32px; }
th, td { text-align: left; padding: 13px 18px; }
th { background: #F5F7FA; font-weight: 700; color: #183153; }
td { color: #183153; background: #FFF; border-bottom: 1px solid #E1E6EB; font-family: 'Open Sans', serif; }
/* Google Fonts Import: Montserrat + Open Sans */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* =====================
   BRAND COLORS & THEME
   ===================== */
:root {
  --color-primary: #183153;
  --color-secondary: #E1E6EB;
  --color-accent: #FFD34D;
  --color-bg: #FAFAFA;
  --color-muted: #F5F7FA;
  --color-white: #FFF;
  --color-dark: #232323;
  --color-shadow: rgba(24,49,83,0.07);
  --radius-base: 14px;
  --shadow-base: 0 2px 16px var(--color-shadow);
}

/* ===============
   LAYOUT HELPERS 
   =============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
/* Yu2023 REMOVE grid */

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: var(--color-white); box-shadow: var(--shadow-base); border-radius: var(--radius-base); margin-bottom: 20px; position: relative; padding: 28px 22px; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; flex-direction: column; align-items: center; gap: 20px; background: var(--color-muted); padding: 24px 22px; border-radius: var(--radius-base); box-shadow: 0 2px 12px rgba(33,40,60,0.07); margin-bottom: 20px; min-width: 0; transition: box-shadow .24s cubic-bezier(.4,0,.2,1); }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; min-width: 0; background: var(--color-white); border-radius: var(--radius-base); box-shadow: 0 2px 10px var(--color-shadow); padding: 24px 22px; transition: box-shadow .23s; margin-bottom: 20px; }

/* ======================
   HEADER / NAVIGATION
   ====================== */
header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-secondary);
  box-shadow: 0 2px 12px var(--color-shadow);
  z-index: 2000;
}
.nav-container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header img { height: 43px; width: auto; display: block; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #183153;
  letter-spacing: 0.01em;
  padding: 6px 11px;
  border-radius: 7px;
  transition: background .19s, color .19s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: #232323;
}

/* ===========================
   HEADER CTAS / NAV BUTTONS
   =========================== */
.btn-primary,
.main-nav a.btn-primary,
.cta-section .btn-primary {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-base);
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 13px 28px;
  transition: background .22s, color .22s, box-shadow .22s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 1.1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #142341;
  color: #FFD34D;
  box-shadow: 0 8px 32px 0 rgba(24,49,83,0.12);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-base);
  padding: 12px 26px;
  transition: background .22s, color .22s, border .18s;
  cursor: pointer;
  text-align: center;
  line-height: 1.1;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
}

/* ====================
   MOBILE NAVIGATION
   ==================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  padding: 3px 14px 3px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 7px;
  transition: background .15s;
  z-index: 3001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
}
.main-nav {
  flex: 1;
}
/* Hide nav on mobile */
@media (max-width: 992px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 993px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 49, 83, 0.95);
  z-index: 3003;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.1,.2,1);
  will-change: transform;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 40px rgba(24,49,83,.14);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #FFD34D;
  font-size: 2.2rem;
  padding: 28px 32px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 5px;
  transition: background .14s;
  z-index: 3006;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  margin-top: 30px;
  align-items: flex-start;
  padding: 0 42px;
}
.mobile-nav a {
  color: #FFD34D;
  font-size: 1.18rem;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  padding: 14px 6px;
  border-radius: 9px;
  width: 100%;
  display: block;
  text-align: left;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,211,77,0.08);
  color: #FFE784;
}
/* Responsive mobile menu for smaller devices */
@media (max-width: 600px) {
  .mobile-nav { padding: 0 18px; }
  .mobile-menu-close { padding: 22px 18px 8px 0; }
}

/* ================
   HERO SECTIONS
   ================ */
.hero {
  background: linear-gradient(90deg, #F5F7FA 32%, #E1E6EB 100%);
  border-radius: 0 0 var(--radius-base) var(--radius-base);
  box-shadow: 0 2px 22px 0 rgba(24,49,83,0.06);
  margin-bottom: 36px;
  padding: 40px 0 46px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  max-width: 700px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.hero p {
  color: #374252;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.hero .btn-primary {
  margin-top: 14px;
}

/* =====================
   FEATURES, CARDS etc
   ===================== */
.features, .services-overview, .about-features, .services-list {
  background: var(--color-muted);
  border-radius: var(--radius-base);
}
.feature-grid, .team-grid, .service-category-grid, .testimonial-slider, .blog-excerpt-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-item img {
  width: 42px; height: 42px; object-fit: contain;
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 7px rgba(24,49,83,.15));
}
.feature-item h3 {
  margin-top: 3px;
  margin-bottom: 4px;
  font-size: 1.18rem;
  color: #183153;
}
.feature-item p {
  margin-bottom: 0;
}
.service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.service-category {
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 9px var(--color-shadow);
  padding: 20px 20px 16px 20px;
  min-width: 230px;
  flex: 1 0 220px;
}
.service-category h3 {
  color: var(--color-primary);
  font-size: 1.17rem;
  margin-bottom: 10px;
}

.team-section .team-grid {
  gap: 28px;
}
.team-member {
  background: var(--color-white);
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-base);
  padding: 18px 20px;
  box-shadow: 0 2px 7px var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 0 240px;
  min-width: 200px;
}
.team-member h3 { font-size: 1.08rem; margin-bottom: 7px; }
.team-member p { margin-bottom: 0; }

.card, .feature-item, .team-member, .service-category, .blog-post, .blog-post-featured, .testimonial-card {
  border-radius: var(--radius-base);
  box-shadow: 0 2px 14px var(--color-shadow);
}

/* ================
   CTA SECTIONS
   ================*/
.cta-section {
  background: var(--color-accent);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 15px rgba(24,49,83, .06);
  padding: 38px 22px 36px 22px;
}
.cta-section .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.cta-section h2, .cta-section p {
  color: #183153;
}
.cta-section .btn-primary {
  box-shadow: none;
  margin-top: 19px;
}
.contact-information {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 19px;
}
.contact-information div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374252;
  font-family: 'Open Sans', serif;
  font-size: 1.02rem;
}
.contact-information img {
  width: 22px; height: 22px; object-fit: contain;
  margin-bottom: 0;
}

/* =====================
   TESTIMONIALS & REVIEWS
   ===================== */
.testimonials, .reviews-list {
  background: var(--color-muted);
  border-radius: var(--radius-base);
}
.testimonial-slider, .testimonial-list {
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-secondary);
  max-width: 390px;
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 27px rgba(24,49,83,0.10);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #23415C;
  margin-bottom: 13px;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.94rem;
  color: #183153;
  font-style: normal;
}
.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 7px;
}
.star-rating img {
  height: 19px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(253, 211, 77, 0.20));
}

/* =============================
   BLOG LIST & FEATURED POST
   ============================= */
.blog-excerpt-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-featured {
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: 0 6px 21px var(--color-shadow);
  padding: 28px 24px;
  flex: 2 1 340px;
  min-width: 220px;
}
.blog-post {
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 22px 18px;
  flex: 1 1 210px;
  min-width: 160px;
  margin-bottom: 20px;
}
.blog-post-featured h3 {
  font-size: 1.23rem;
}
.blog-post h4 {
  font-size: 1.07rem;
}
.read-more {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 12px;
  display: inline-block;
  text-decoration: underline;
  font-size: 1em;
  transition: color .17s;
}
.read-more:hover { color: #FFD34D; }

/* ===============
   LEGAL PAGES
   =============== */
.legal-section {
  background: var(--color-muted);
  border-radius: var(--radius-base);
  box-shadow: 0 1px 10px var(--color-shadow);
  margin-bottom: 40px;
  padding: 32px 22px 32px 22px;
}
.legal-section h1, .legal-section h2 {
  margin-bottom: 13px;
}
.legal-section ul {
  margin-bottom: 18px;
}

/* =====================
   PRICING TABLE & FAQ
   ===================== */
.pricing-section {
  background: var(--color-muted);
  border-radius: var(--radius-base);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding-bottom: 30px;
}
.pricing-table {
  margin-bottom: 24px;
  font-family: 'Open Sans', serif;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #E1E6EB;
}
.pricing-table th {
  color: #183153;
  background: #F5F7FA;
  font-size: 1.02rem;
}
.pricing-table td {
  background: #FFF;
  color: #183153;
  font-size: 1.01rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 { margin-bottom: 4px; }
.faq-item p { margin-bottom: 0; }

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-secondary);
  box-shadow: 0 -1px 12px var(--color-shadow);
  padding: 24px 0 12px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #788299;
  font-size: 0.99rem;
  font-family: 'Montserrat', serif;
  transition: color .16s;
  padding: 4px 6px;
  border-radius: 7px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFD34D;
  background: #1B2C47;
}
footer p {
  color: #9CA4B3;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ===============
   THANK YOU PAGE
   =============== */
.thank-you-section {
  background: var(--color-muted);
  border-radius: var(--radius-base);
  text-align: center;
  padding: 64px 18px;
  margin-bottom: 60px;
}
.thank-you-section h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.thank-you-section p {
  color: #23415C;
  margin-bottom: 9px;
  font-size: 1.06rem;
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  box-shadow: 0 -2px 24px rgba(24,49,83,0.19);
  border-top: 1px solid var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 4000;
  padding: 20px 24px;
  gap: 22px;
  transition: transform .35s cubic-bezier(.64,.09,.26,1), opacity .24s;
  opacity: 1;
  transform: translateY(0);
  font-family: 'Open Sans', serif;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .banner-text {
  color: #1B2232;
  font-size: 1.03rem;
  max-width: 550px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1rem;
  padding: 10px 23px;
}
.cookie-banner .btn-secondary {
  background: transparent;
  color: #183153;
  border: 2px solid #183153;
  border-radius: var(--radius-base);
  font-family: 'Montserrat', serif;
  font-weight: 600;
}
.cookie-banner .btn-secondary:hover { background: #FFD34D; border-color: #FFD34D; color: #183153; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 10px; padding: 14px 8px; }
  .cookie-banner .banner-text { font-size: 0.99rem; }
}

/* -------------
   Cookie Modal
   ------------- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,43,54,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .32s;
}
.cookie-modal {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(24,49,83,0.18);
  max-width: 420px;
  width: 92vw;
  padding: 36px 18px 24px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-appear .32s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-appear {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 1.02rem;
  border-bottom: 1px solid #E1E6EB;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label { display: flex; align-items: center; gap: 7px; }
.cookie-modal .modal-actions {
  margin-top: 9px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 9px; top: 7px;
  font-size: 1.65rem;
  background: transparent;
  border: none;
  color: #183153;
  cursor: pointer;
  border-radius: 7px;
  transition: background .14s;
  padding: 6px 11px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E1E6EB;
}
/* Toggle switch style for cookie categories */
.cookie-toggle {
  width: 34px; height: 20px;
  border-radius: 9px;
  background: #E1E6EB;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: background 0.14s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 2px; top: 2px;
  box-shadow: 0 2px 6px rgba(24,49,83,0.10);
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle input:checked + span {
  background: #FFD34D;
}
.cookie-toggle input:checked + span:before {
  left: 16px;
  background: #FFD34D;
}
.cookie-toggle span {
  position: absolute;
  left: 0; top: 0; bottom: 0; right: 0;
  background: #E1E6EB;
  border-radius: 9px;
  transition: background 0.17s;
}
.cookie-toggle input:checked + span {
  background: #FFD34D;
}
.cookie-toggle input:checked + span:before {
  background: #FFD34D;
}
.cookie-toggle span:before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 2px; top: 2px;
  box-shadow: 0 2px 6px rgba(24,49,83,0.13);
  transition: left 0.17s, background 0.17s;
}
.cookie-toggle input:checked + span:before {
  left: 16px;
  background: #FFD34D;
}

/* =========================
   RESPONSIVE & FLEX LAYOUTS
   ========================= */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
}
@media (max-width: 992px) {
  .feature-grid,.team-grid,.service-category-grid,.testimonial-slider,.blog-excerpt-grid, .testimonial-list {
    gap: 18px;
  }
  .service-category,
  .team-member,
  .blog-post,
  .feature-item,
  .testimonial-card { flex: 1 1 100%; min-width: 0; }
}
@media (max-width: 768px) {
  .content-wrapper, .hero .content-wrapper, .cta-section .content-wrapper { gap: 13px; }
  .feature-grid,
  .team-grid,
  .service-category-grid,
  .testimonial-slider,
  .testimonial-list,
  .blog-excerpt-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .section, .legal-section, .cta-section {
    padding: 28px 7px 28px 7px;
    margin-bottom: 30px;
    border-radius: 11px;
  }
  .hero {
    padding: 33px 0 34px 0;
    border-radius: 0 0 11px 11px;
  }
  .contact-information { flex-direction: column; gap: 14px; }
  .card-container, .content-grid { flex-direction: column; gap: 19px; }
  .blog-post-featured, .team-member, .feature-item, .testimonial-card, .service-category, .card {
    padding: 17px 10px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.1rem; }
}
@media (max-width: 500px) {
  .hero { padding: 22px 0 18px 0; }
  .cta-section, .legal-section, .thank-you-section {
    padding: 17px 3px;
  }
  .container {
    padding: 0 5px;
  }
}

/* Ensure no overlapping and spacing for cards/sections */
.section > *,
.features > *,
.services-overview > *,
.about-features > *,
.team-section > *,
.cta-section > *,
.pricing-section > *,
.legal-section > *,
.hero > * {
  margin-bottom: 20px;
}
/* Remove last section margin */
.section:last-child,
.cta-section:last-child,
.legal-section:last-child,
.thank-you-section:last-child {
  margin-bottom: 0;
}

/* ==================
   MICRO-INTERACTIONS
   ================== */
.card, .feature-item, .team-member, .service-category, .testimonial-card, .blog-post, .blog-post-featured {
  transition: transform .14s cubic-bezier(.46,.06,.34,1), box-shadow .17s;
  will-change: transform, box-shadow;
}
.card:hover, .card:focus-within,
.feature-item:hover, .feature-item:focus-within,
.team-member:hover, .team-member:focus-within,
.service-category:hover, .service-category:focus-within,
.blog-post-featured:hover, .blog-post-featured:focus-within,
.testimonial-card:hover, .testimonial-card:focus-within,
.blog-post:hover, .blog-post:focus-within {
  transform: translateY(-4px) scale(1.013);
  box-shadow: 0 8px 36px rgba(24,49,83, 0.16);
  z-index: 10;
}

/* Buttons focus style */
.btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #FFD34D;
  outline-offset: 2px;
}

/* ==========================
   UTILITY CLASSES / HELPERS
   ========================== */
.text-center { text-align: center !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.d-flex { display: flex; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }

/* =======================
   FORMS (Contact, Review)
   ======================= */
input, textarea, select {
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  padding: 10px 13px;
  border: 1px solid #E1E6EB;
  border-radius: var(--radius-base);
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  box-sizing: border-box;
  background: #FFF;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFD34D;
}
label { font-family: 'Montserrat', serif; font-weight: 500; color: #183153; }
button { cursor: pointer; font-family: 'Montserrat', serif; }

/* ================
   MISC PRINT/ACCESS
   ================ */
@media print {
  header,footer,.cookie-banner,.mobile-menu { display:none !important; }
  body { background: #fff; color: #000; }
}
