/* ============================================
   ARTIMED — Soft Elegance Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Quicksand:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #fdf8f4;
  --surface: #f5ede5;
  --accent: #c48b6c;
  --accent-hover: #d4a080;
  --text: #3a2e28;
  --text-muted: #8a7d76;
  --border: rgba(196, 139, 108, 0.2);
  --white: #ffffff;
  --heading-font: 'DM Serif Display', serif;
  --body-font: 'Quicksand', sans-serif;
  --shadow-soft: 0 4px 24px rgba(58, 46, 40, 0.06);
  --shadow-card: 0 8px 32px rgba(58, 46, 40, 0.08);
  --shadow-elevated: 0 16px 48px rgba(58, 46, 40, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Decorative Elements --- */
.ornament {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 16px auto;
}

.section-label {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 2px;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Burger Menu */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger span:nth-child(1) { margin-bottom: 5px; }
.burger span:nth-child(3) { margin-top: 5px; }

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  box-shadow: -8px 0 40px rgba(58, 46, 40, 0.15);
  overflow-y: auto;
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition), padding-left var(--transition);
}

.nav-mobile a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-mobile .mobile-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-mobile .mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  text-align: center;
  min-height: 52px;
}

.mobile-cta .btn-phone {
  background: var(--accent);
  color: var(--white);
}

.mobile-cta .btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 46, 40, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, #fdf8f4 0%, #f5ede5 40%, #efe3d8 70%, #e8d5c8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 139, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 139, 108, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative SVG shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 139, 108, 0.12);
}

.hero-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 8%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 20%;
  background: rgba(196, 139, 108, 0.04);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero photo collage */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px;
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo:hover img {
  transform: scale(1.05);
}

.hero-photo:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  border-radius: var(--radius-lg);
}

.hero-photo:nth-child(2) {
  aspect-ratio: 4/3;
}

.hero-photo:nth-child(3) {
  aspect-ratio: 4/3;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 52px;
  min-width: 44px;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 139, 108, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 139, 108, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20c05c;
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg,
.btn-primary svg,
.btn-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1rem;
}

/* ============================================
   SERVICE CARDS (photo-overlay)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(58, 46, 40, 0.85) 0%, rgba(58, 46, 40, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.service-card:hover .service-overlay {
  background: linear-gradient(0deg, rgba(58, 46, 40, 0.9) 0%, rgba(58, 46, 40, 0.3) 50%, transparent 100%);
}

.service-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.service-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 10px;
  align-self: flex-start;
}

/* ============================================
   GALLERY (horizontal-scroll)
   ============================================ */
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.gallery-item-info {
  padding: 16px;
}

.gallery-item-info h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-bottom: 4px;
}

.gallery-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.gallery-hint svg {
  width: 20px;
  height: 20px;
  animation: swipe 2s ease-in-out infinite;
}

@keyframes swipe {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}

.team-card-info {
  padding: 20px;
  text-align: center;
}

.team-card-info h4 {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.price-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.price-tabs::-webkit-scrollbar { display: none; }

.price-tab {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
}

.price-tab.active,
.price-tab:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.price-category {
  display: none;
}

.price-category.active {
  display: block;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 16px 0;
  font-size: 0.95rem;
}

.price-table td:first-child {
  color: var(--text);
  padding-right: 16px;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  font-size: 0.9rem;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--heading-font);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
}

.review-stars {
  color: #f4b942;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ============================================
   BRANCHES / CONTACTS
   ============================================ */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.branch-card-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  padding: 24px 28px;
  color: var(--white);
}

.branch-card-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.branch-card-header p {
  opacity: 0.85;
  font-size: 0.85rem;
}

.branch-card-body {
  padding: 28px;
}

.branch-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.branch-detail:last-child {
  margin-bottom: 0;
}

.branch-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-icon svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.branch-detail-text h4 {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.branch-detail-text p,
.branch-detail-text a {
  font-size: 0.95rem;
  color: var(--text);
}

.branch-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ============================================
   CTA INLINE SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent), #b07a5e);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 1rem;
}

.cta-section .btn {
  background: var(--white);
  color: var(--accent);
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FADE-UP ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #fdf8f4, #f5ede5, #efe3d8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 139, 108, 0.06) 0%, transparent 70%);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   WORKING HOURS
   ============================================ */
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.hours-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e7d32;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hours-time {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 4px;
}

.hours-days {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   FLOATING CTA (mobile)
   ============================================ */
.floating-cta {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.floating-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.floating-cta a:hover {
  transform: scale(1.1);
}

.floating-cta svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .gallery-item {
    flex: 0 0 320px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons-row {
    flex-direction: row;
    justify-content: center;
  }

  .branch-buttons {
    flex-direction: row;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .burger {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin: 0 0 32px;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item {
    flex: 0 0 360px;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .floating-cta {
    display: none;
  }

  .section {
    padding: 100px 0;
  }

  .container {
    padding: 0 40px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-photos {
    padding: 0;
  }
}
