/* ==========================================================================
   DENTICAA DENTAL CLINIC — MASTER ORIGINAL DESIGN SYSTEM
   Visual Identity: Warm Ivory × Soft Cream × Editorial Charcoal × Luxury Gold
   ========================================================================== */

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

:root {
  /* Original Theme Colors */
  --bg-primary: #F4F1EC;
  --bg-secondary: #E8E3DC;
  --bg-card: #FAF9F7;
  --bg-card-hover: #FFFFFF;
  --bg-dark-card: #141A22;
  
  --text-dark: #1A1F28;
  --text-muted: #4D5056;
  --text-light: #7A7E85;
  --text-white: #FFFFFF;
  
  --border-subtle: #D0CBC3;
  --border-light: #E4E0D8;
  
  /* Gold Accents */
  --gold-primary: #C7A76A;
  --gold-light: #E1D0AE;
  --gold-dark: #A38246;
  --gold-subtle: rgba(199, 167, 106, 0.12);
  --gold-border: rgba(199, 167, 106, 0.35);

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(26, 31, 40, 0.04);
  --shadow-card: 0 10px 30px rgba(26, 31, 40, 0.06);
  --shadow-hover: 0 16px 40px rgba(26, 31, 40, 0.12);
  --shadow-gold: 0 8px 25px rgba(199, 167, 106, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold-primary);
}

.section-title {
  font-size: 2.65rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Editorial Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-sans);
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--text-dark);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(26, 31, 40, 0.15);
}

.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 31, 40, 0.25);
}

.btn-gold {
  background-color: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 167, 106, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--text-dark);
  background-color: rgba(26, 31, 40, 0.04);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #C0B9AE;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  list-style: none;
}

.breadcrumbs a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--gold-primary);
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 10px;
  color: var(--border-subtle);
}

.breadcrumbs li:last-child::after {
  content: '';
}
