/* ===== CSS Variables / Design Tokens ===== */
:root {
  --primary: #dc143c;
  --primary-foreground: #fff;
  --foreground: #1a1a1a;
  --background: #fff;
  --muted: #ffe5e5;
  --muted-foreground: #666;
  --border: #ffe5e5;
  --secondary: #f5f5f5;
  --card: #fff;
  --radius: 0.65rem;
  --yellow: oklch(85.2% .199 91.936);
  --red-100: oklch(93.6% .032 17.717);
  --slate-600: oklch(44.6% .043 257.281);
  --slate-700: oklch(37.2% .044 257.287);
  --slate-900: oklch(20.8% .042 265.755);
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1.5;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: rgba(220, 20, 60, 0.05);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  margin-top: 1.5rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.2;
}

.logo-location {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(to bottom, white, oklch(98.4% .003 247.858), oklch(96.8% .007 247.896));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

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

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
  margin-bottom: 1.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  color: var(--yellow);
}

.rating-text {
  font-size: 0.875rem;
  color: var(--slate-600);
}

.rating-divider {
  color: var(--muted-foreground);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.hero-float-card {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 11px 0 rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  min-width: 200px;
}

.float-card-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.float-card-addr-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.float-card-addr {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.float-card-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.float-rating-num {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--foreground);
}

.float-stars {
  display: flex;
  gap: 1px;
}

.star-icon-sm {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--yellow);
}

.float-reviews {
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 8rem;
  }
  .hero-inner {
    flex-direction: row;
    text-align: left;
  }
  .hero-content {
    text-align: left;
    flex: 1;
  }
  .hero-title {
    font-size: 3.75rem;
  }
  .hero-subtitle {
    font-size: 1.125rem;
  }
  .hero-rating {
    justify-content: flex-start;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-image-wrapper {
    flex: 1;
  }
}

/* ===== About Section ===== */
.about-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-card {
  background-color: var(--red-100);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.quote-icon {
  margin-bottom: 1rem;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote-badge-icon {
  flex-shrink: 0;
}

.quote-badge-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  width: fit-content;
}

.rating-badge-star {
  color: var(--yellow);
}

.about-right {
  flex: 1;
}

.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.about-text {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--slate-600);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-left {
    flex: 1;
    max-width: 420px;
  }
  .about-right {
    flex: 1;
  }
  .section-title {
    font-size: 2.25rem;
  }
}

/* ===== Services Section ===== */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, oklch(96.8% .007 247.896), white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.text-center {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.service-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-100);
  font-family: var(--font-serif);
  line-height: 1;
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.service-title {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Clickable service card */
.service-card-link {
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--border);
}

.service-card-link:hover {
  border-color: rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 25px -3px rgba(220, 20, 60, 0.12), 0 4px 6px -4px rgba(0,0,0,0.08);
}

.service-learn-more {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.75rem;
  transition: transform 0.2s ease;
}

.service-card-link:hover .service-learn-more {
  transform: translateX(4px);
}

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 5rem 0;
  background: var(--background);
}

.reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.why-choose {
  flex: 1;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--red-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.reviews-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--slate-700);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

@media (min-width: 768px) {
  .reviews-inner {
    flex-direction: row;
  }
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, oklch(96.8% .007 247.896), white);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-left, .contact-right {
  flex: 1;
}

.hours-card {
  background-color: var(--red-100);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
}

.hours-row:not(:last-child) {
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.hours-day {
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--foreground);
}

.hours-time {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--foreground);
  margin-bottom: 0.125rem;
}

.contact-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.contact-phone {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-phone:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .contact-inner {
    flex-direction: row;
  }
}

/* ===== Footer ===== */
.footer {
  background-color: #1a1a19;
  color: white;
  padding: 3rem 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  flex: 1;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
}

.footer-links, .footer-contact {
  flex: 1;
}

.footer-heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.938rem;
  margin-bottom: 0.75rem;
  color: white;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-address {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.625;
  margin-bottom: 0.5rem;
}

.footer-phone {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}

/* ===== Mobile Menu (overlay) ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 101;
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  box-shadow: -4px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
