/* Modern Clean CSS for RK-Hausmeisterservice
   Matches Mockup Concept Pixel-Accurately
   Mobile-First & Fully Responsive
*/

:root {
  --color-bg-dark: #0f1115;
  --color-bg-darker: #090a0d;
  --color-card-bg: #15181e;
  --color-card-border: #232730;
  --color-card-hover: #1c212a;
  
  --color-primary-red: #d32f2f;
  --color-primary-red-hover: #b71c1c;
  --color-accent-gold: #f59e0b;
  --color-accent-yellow: #fbbf24;
  
  --color-text-main: #f3f4f6;
  --color-text-muted: #9ca3af;
  --color-text-subtle: #6b7280;
  --color-text-dark: #111827;
  
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-cursive: 'Caveat', 'Brush Script MT', cursive, sans-serif;
  
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.6);
  --transition: all 0.25s ease-in-out;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================
   TOP BAR
   ========================================================== */
.top-bar {
  background-color: #050608;
  border-bottom: 1px solid #1a1d24;
  font-size: 0.8rem;
  color: #a0a6b2;
  padding: 0.45rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  color: var(--color-primary-red);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-item a:hover {
  color: #fff;
}

.top-bar-right {
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.2px;
}

/* ==========================================================
   HEADER / NAVBAR
   ========================================================== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  border-radius: 2px;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-red);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.35);
  transition: var(--transition);
}

.header-cta-btn:hover {
  background-color: var(--color-primary-red-hover);
  transform: translateY(-1px);
  color: #ffffff;
}

.header-cta-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #111827;
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero-section {
  position: relative;
  background-color: #101318;
  background-image: linear-gradient(to right, rgba(10, 12, 16, 0.94) 0%, rgba(10, 12, 16, 0.82) 42%, rgba(10, 12, 16, 0.25) 80%, rgba(10, 12, 16, 0.05) 100%), url('../images/mockup_assets/hero_modern_building_hd.jpg?v=100');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 2px solid #232730;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.hero-title .text-red {
  color: var(--color-primary-red);
}

.hero-subtitle {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-accent-gold);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-subhead {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.hero-badges-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-red);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-primary-red-hover);
  transform: translateY(-2px);
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(20, 24, 33, 0.85);
  color: #ffffff;
  border: 1px solid #3f4756;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.btn-secondary-dark:hover {
  background-color: #232a38;
  border-color: #64748b;
  transform: translateY(-2px);
}

.hero-badge-corner {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-cursive);
  font-size: 1.6rem;
  line-height: 1.15;
  color: #ffffff;
  transform: rotate(-4deg);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  text-align: center;
}

/* ==========================================================
   USP HIGHLIGHTS STRIP
   ========================================================== */
.usp-bar {
  background-color: #0c0e12;
  border-bottom: 1px solid #1e222b;
  padding: 1.25rem 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.usp-icon {
  color: var(--color-accent-gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.usp-icon svg {
  width: 26px;
  height: 26px;
}

.usp-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.usp-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   SERVICES SECTION
   ========================================================== */
.section-services {
  padding: 4rem 0 3.5rem;
  background-color: var(--color-bg-dark);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-bottom: 1px solid #1f242d;
  padding-bottom: 1rem;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
}

.section-title .text-gold {
  color: var(--color-accent-gold);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background-color: var(--color-accent-gold);
  color: #000000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #3b4252;
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 0.85rem 0.65rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.service-card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary-red);
  margin-bottom: 0.5rem;
}

.service-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.45rem;
  min-height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-desc {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ==========================================================
   DUAL SECTION: WHY US & BEFORE-AFTER
   ========================================================== */
.section-why-and-work {
  padding: 3rem 0 3.5rem;
  background-color: #0d0f14;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
}

/* WHY US CARD */
.why-us-card {
  background: linear-gradient(145deg, #141820 0%, #0f1218 100%);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary-red) 0%, transparent 65%);
}

.why-us-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.why-us-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.why-us-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

.why-us-list li svg {
  color: var(--color-accent-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.handwritten-stamp {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  text-align: center;
  font-family: var(--font-cursive);
  font-size: 1.45rem;
  line-height: 1.15;
  color: #e2e8f0;
  transform: rotate(-6deg);
  border-bottom: 2px solid var(--color-primary-red);
  padding-bottom: 4px;
}

/* BEFORE AFTER GALLERY */
.work-preview-card {
  background-color: #12151c;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.work-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.work-header p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.ba-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #0b0d11;
  border: 1px solid #1f242e;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding-bottom: 0.5rem;
}

.ba-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}

.ba-item-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 0.4rem;
  text-align: center;
}

/* ==========================================================
   REVIEWS / TESTIMONIALS SECTION
   ========================================================== */
.section-reviews {
  padding: 3.5rem 0;
  background-color: var(--color-bg-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 220px;
  gap: 1rem;
}

.review-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.review-text {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.myhammer-card {
  background: linear-gradient(180deg, #161a22 0%, #101319 100%);
  border: 1px solid #28303e;
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.myhammer-badge-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.myhammer-score {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
}

.myhammer-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

/* ==========================================================
   CALL TO ACTION BANNER
   ========================================================== */
.cta-banner-section {
  background-color: #0b0d11;
  border-top: 1px solid #1a1e27;
  border-bottom: 1px solid #1a1e27;
  padding: 1.5rem 0;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.cta-icon-box svg {
  width: 26px;
  height: 26px;
}

.cta-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.cta-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-primary-red);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-cta-red:hover {
  background-color: var(--color-primary-red-hover);
}

.btn-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  border: 1px solid #3b4252;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-cta-tel:hover {
  background-color: #1e2430;
  border-color: #64748b;
}

.btn-cta-tel svg {
  color: var(--color-accent-gold);
  width: 18px;
  height: 18px;
}

/* ==========================================================
   CONTACT MODAL / SECTION (For Contact Form)
   ========================================================== */
.section-contact-form {
  padding: 4rem 0;
  background-color: #0f1217;
  border-bottom: 1px solid #1e222b;
}

.contact-box {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.contact-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-box p {
  color: var(--color-text-muted);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  background-color: #0b0d12;
  border: 1px solid #282f3c;
  color: #f8fafc;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  border-radius: 4px;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-btn-submit {
  width: 100%;
  background-color: var(--color-primary-red);
  color: #ffffff;
  border: none;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.form-btn-submit:hover {
  background-color: var(--color-primary-red-hover);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.main-footer {
  background-color: #06070a;
  padding: 3.5rem 0 1.5rem;
  color: #94a3b8;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #1a1e27;
  padding-bottom: 2.5rem;
}

.footer-col-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  color: var(--color-accent-gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-stamp {
  font-family: var(--font-cursive);
  font-size: 1.75rem;
  line-height: 1.15;
  color: #ffffff;
  transform: rotate(-5deg);
  border-bottom: 2px solid var(--color-primary-red);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .myhammer-card {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .dual-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badge-corner {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }
  .top-bar-left {
    justify-content: center;
    width: 100%;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    gap: 1rem;
  }
  .nav-menu.show {
    display: flex;
  }
  .nav-link {
    color: #111827;
    font-size: 1.05rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-left {
    flex-direction: column;
  }
  .cta-actions {
    justify-content: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
  .btn-primary, .btn-secondary-dark {
    width: 100%;
    justify-content: center;
  }
}


/* REVIEWS LINKS & CLEAN BADGE STYLING */
.review-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.review-card-link:hover {
  transform: translateY(-4px);
  border-color: #3b4252;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.myhammer-card-link {
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.myhammer-card-link:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.review-badge-google {
  font-size: 0.72rem;
  font-weight: 600;
  color: #f8fafc;
  background: rgba(234, 67, 53, 0.15);
  border: 1px solid rgba(234, 67, 53, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.review-badge-myhammer {
  font-size: 0.72rem;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.myhammer-rating-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: 0.3px;
}

.myhammer-rating-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}
