/* ===================================
   COUTUREMANIA RETOUCHE EXPRESS
   Custom CSS — Rose Poudré / Doré
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --rose:        #D4A0A0;
  --rose-light:  #F2E0E0;
  --rose-dark:   #B07878;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A8;
  --cream:       #FDF8F4;
  --charcoal:    #2C2C2C;
  --charcoal-light: #4A4A4A;
  --white:       #FFFFFF;
  --gray-100:    #F8F6F4;
  --gray-200:    #EDE8E3;
  --gray-300:    #D5CEC7;
  --gray-500:    #8A8077;
  --shadow-sm:   0 2px 8px rgba(44,44,44,.06);
  --shadow-md:   0 8px 30px rgba(44,44,44,.1);
  --shadow-lg:   0 20px 60px rgba(44,44,44,.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,.25);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
}

/* ---- Reset & Base ---- */
*,*::before,*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

a { color: var(--rose-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

::selection { background: var(--rose-light); color: var(--charcoal); }

/* ---- Utility ---- */
.section-padding { padding: 100px 0; }
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-bottom: 3rem;
}
.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 3px;
  margin-bottom: 1rem;
}
.accent-line-center { margin-left: auto; margin-right: auto; }

/* ---- Navbar ---- */
.navbar-cm {
  background: rgba(253,248,244,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,160,.12);
  padding: 12px 0;
  transition: var(--transition);
  z-index: 1050;
}
.navbar-cm.scrolled {
  background: rgba(253,248,244,.96);
  box-shadow: var(--shadow-sm);
}
.navbar-cm .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.5px;
}
.navbar-cm .navbar-brand span {
  color: var(--gold);
}
.navbar-cm .nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  padding: 8px 18px !important;
  letter-spacing: .3px;
  position: relative;
  transition: var(--transition);
}
.navbar-cm .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.navbar-cm .nav-link:hover,
.navbar-cm .nav-link.active {
  color: var(--charcoal);
}
.navbar-cm .nav-link:hover::after,
.navbar-cm .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-cm .btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.navbar-cm .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,.35);
  color: #fff;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,44,44,.7) 0%,
    rgba(44,44,44,.3) 50%,
    rgba(201,169,110,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.hero-badge i { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--gold-light), var(--rose-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  opacity: .85;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,169,110,.4);
  color: #fff;
}
.btn-hero-secondary {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 16px 36px;
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: translateY(-2px);
}
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stat-label {
  font-size: .8rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 30px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--rose-dark);
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: .95rem;
  color: var(--charcoal);
}
.trust-text span {
  font-size: .82rem;
  color: var(--gray-500);
}

/* ---- Services Section ---- */
.services-section { background: var(--cream); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--rose-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--rose-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--rose-dark));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: .8rem;
}
.service-card p {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- About Section ---- */
.about-section {
  background: var(--white);
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}
.about-img-badge .stars { color: #FFB800; font-size: 1.1rem; }
.about-img-badge span {
  display: block;
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: .88rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---- Reviews Section ---- */
.reviews-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3A3232 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.15), transparent);
}
.reviews-header .section-title { color: #fff; }
.reviews-header .section-subtitle { color: rgba(255,255,255,.6); }

.reviews-global {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 3rem;
  justify-content: center;
}
.reviews-global-score {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.reviews-global-info { text-align: left; }
.reviews-global-stars {
  color: #FFB800;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.reviews-global-count {
  font-size: .9rem;
  opacity: .7;
}
.google-logo-sm {
  height: 22px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Reviews Grid */
.reviews-carousel-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-carousel-wrapper::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 4px;
}

.review-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 340px;
  max-width: 340px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.review-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,.3);
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author {
  font-weight: 600;
  font-size: .95rem;
}
.review-date {
  font-size: .78rem;
  opacity: .5;
}
.review-stars {
  color: #FFB800;
  font-size: .9rem;
  margin-bottom: 10px;
}
.review-text {
  font-size: .88rem;
  line-height: 1.7;
  opacity: .85;
}
.review-google-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .75rem;
  opacity: .5;
}
.review-google-icon img { height: 16px; }

/* ---- Location Section ---- */
.location-section { background: var(--white); }

.location-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}
.location-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rose-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--rose-dark);
  margin-bottom: 20px;
}
.location-card h4 {
  font-size: 1.2rem;
  margin-bottom: .8rem;
}
.location-card p,
.location-card a {
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.location-card a:hover { color: var(--gold); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08), transparent 50%);
}
.cta-banner h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
}
.btn-cta-white {
  background: #fff;
  color: var(--charcoal);
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  color: var(--charcoal);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  margin-left: 14px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  color: #fff;
}

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer h5 {
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); }
.footer p { font-size: .88rem; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 18px;
}
.footer-contact-item span { font-size: .88rem; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  margin-top: 40px;
  text-align: center;
  font-size: .82rem;
  opacity: .5;
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: linear-gradient(135deg, var(--charcoal), #3A3232);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.1), transparent);
}
.page-header h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: .5rem;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
}
.page-header .accent-line {
  margin: 0 auto 1rem;
}

/* ---- Services Detail Cards ---- */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  height: 100%;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-detail-img {
  height: 220px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.service-detail-card:hover .service-detail-img img {
  transform: scale(1.05);
}
.service-detail-body {
  padding: 30px;
}
.service-detail-body h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.service-detail-body p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.service-detail-body ul li {
  padding: 6px 0;
  font-size: .88rem;
  color: var(--charcoal-light);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-detail-body ul li:last-child { border-bottom: none; }
.service-detail-body ul li i { color: var(--gold); font-size: .8rem; }

/* ---- Contact Form ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  transition: var(--transition);
  background: var(--gray-100);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(212,160,160,.15);
  background: #fff;
}
.contact-form .form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--rose-dark));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,169,110,.4);
  color: #fff;
}

/* ---- Hours Table ---- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.hours-table td:first-child { font-weight: 600; color: var(--charcoal); }
.hours-table td:last-child { text-align: right; color: var(--gray-500); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today td { color: var(--gold); font-weight: 600; }

/* ---- About Page ---- */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--rose));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item .year {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.timeline-item p {
  font-size: .88rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* Values cards */
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--rose-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin: 0 auto 18px;
}
.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.value-card p {
  font-size: .88rem;
  color: var(--gray-500);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 24px; }
  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 2.4rem; }
  .review-card { min-width: 300px; max-width: 300px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: .95rem; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .trust-item { justify-content: center; margin-bottom: 16px; }
  .about-img-wrapper img { height: 300px; }
  .reviews-global { flex-direction: column; gap: 10px; }
  .reviews-global-info { text-align: center; }
  .reviews-carousel-wrapper { overflow-x: hidden; scroll-snap-type: none; }
  .reviews-track { flex-direction: column; width: 100%; }
  .review-card { min-width: 100%; max-width: 100%; padding: 22px; flex-shrink: 1; }
  .location-card { padding: 24px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .btn-cta-outline { margin-left: 0; margin-top: 10px; }
  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 1.8rem; }
  .contact-form { padding: 24px; }
  .footer { padding: 40px 0 20px; }
}

@media (max-width: 575.98px) {
  .navbar-cm .navbar-brand { font-size: 1.3rem; }
  .hero h1 { font-size: 1.7rem; }
  .reviews-global-score { font-size: 3.5rem; }
}

/* ---- Loading skeleton for reviews ---- */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Floating Call Button (Mobile) ---- */
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2s infinite;
}

.floating-call-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(201, 169, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
  }
}

/* ---- Swup Transitions ---- */
.transition-fade {
  transition: opacity .4s ease, transform .4s ease;
  opacity: 1;
  transform: translateY(0);
}
html.is-animating .transition-fade {
  opacity: 0;
  transform: translateY(10px);
}
