/* =====================================================
   ESTHEPERLA - Centre de Beauté & Bien-être, Demnate
   ===================================================== */

:root {
  --gold: #C8A96B;
  --gold-light: #E8D5A8;
  --gold-dark: #A0803D;
  --rose: #E8829A;
  --rose-dark: #C4566E;
  --rose-light: #FDE8F0;
  --rose-ultra: #FDF5F8;
  --cream: #FDF8F2;
  --dark: #1A1A1A;
  --text: #333333;
  --text-mid: #666666;
  --border: #EDE5DD;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --tr: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.accent { font-family: 'Dancing Script', cursive; color: var(--gold); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 55px 0; }
.bg-cream { background: var(--cream); }
.bg-ultra { background: var(--rose-ultra); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .sub { font-family: 'Dancing Script', cursive; font-size: 1.35rem; color: var(--gold); display: block; margin-bottom: 8px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--text-mid); font-size: 1.02rem; }
.divider { width: 70px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--rose)); margin: 16px auto; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--tr); letter-spacing: 0.4px;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white); box-shadow: 0 4px 18px rgba(232,130,154,0.38);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,130,154,0.5); color: var(--white); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); box-shadow: 0 4px 18px rgba(200,169,107,0.38);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,169,107,0.5); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-outline:hover { background: var(--white); color: var(--rose-dark); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 4px 18px rgba(37,211,102,0.38); }
.btn-wa:hover { background: #1FB95A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-2px); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09); padding: 10px 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.navbar-logo .brand { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--white); letter-spacing: 1.5px; transition: var(--tr); }
.navbar-logo .brand span { display: block; font-size: 0.65rem; font-family: 'Raleway', sans-serif; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; opacity: 0.85; }
.navbar.scrolled .brand { color: var(--dark); }
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a { padding: 7px 14px; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.92); border-radius: 50px; transition: var(--tr); }
.navbar.scrolled .navbar-nav a { color: var(--text); }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--gold); }
.navbar.scrolled .navbar-nav a:hover, .navbar.scrolled .navbar-nav a.active { color: var(--rose-dark); }
.navbar-right { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; border: none; background: none; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--tr); display: block; }
.navbar.scrolled .hamburger span { background: var(--dark); }

/* Mobile Menu */
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1998; }
.menu-overlay.open { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
  background: var(--white); z-index: 1999; padding: 70px 28px 28px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { padding: 12px 0; font-size: 1.05rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text); line-height: 1; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #1A1015;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,16,21,0.72) 0%, rgba(196,86,110,0.32) 60%, rgba(200,169,107,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 860px; }
.hero-eyebrow { font-family: 'Dancing Script', cursive; font-size: 1.55rem; color: var(--gold-light); display: block; margin-bottom: 16px; }
.hero-content h1 { color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-content p { font-size: 1.08rem; color: rgba(255,255,255,0.88); margin-bottom: 38px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.65); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 38px; background: rgba(255,255,255,0.4); }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, var(--rose-dark), var(--rose), #E8A5B8); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { color: var(--white); }
.stat-item .num { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; font-weight: 700; line-height: 1; display: block; }
.stat-item .lbl { font-size: 0.88rem; opacity: 0.9; margin-top: 6px; font-weight: 500; letter-spacing: 0.5px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); text-align: center; box-shadow: 0 8px 30px rgba(200,169,107,0.45);
  border: 4px solid var(--white);
}
.about-badge .n { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge .t { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.about-text .eyebrow { font-family: 'Dancing Script', cursive; font-size: 1.25rem; color: var(--gold); margin-bottom: 10px; display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-mid); margin-bottom: 14px; font-size: 1.01rem; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.feat { display: flex; align-items: flex-start; gap: 10px; }
.feat-ico { width: 34px; height: 34px; border-radius: 50%; background: var(--rose-light); display: flex; align-items: center; justify-content: center; color: var(--rose-dark); font-size: 0.95rem; flex-shrink: 0; }
.feat p { font-size: 0.9rem; font-weight: 500; color: var(--text); margin: 0; padding-top: 6px; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.svc-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.svc-img { width: 100%; height: 210px; object-fit: cover; }
.svc-img-placeholder { width: 100%; height: 210px; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.svc-body { padding: 26px; }
.svc-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 14px; }
.svc-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.svc-card p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 16px; }
.svc-price { font-size: 0.85rem; color: var(--text-mid); }
.svc-price strong { color: var(--rose-dark); font-size: 1.15rem; font-family: 'Cormorant Garamond', serif; }
.svc-foot { padding: 14px 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.svc-foot a { color: var(--rose); font-size: 0.88rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.svc-foot a:hover { color: var(--rose-dark); gap: 9px; }

/* ===== OFFERS SECTION ===== */
.offers-section { background: linear-gradient(135deg, #1A0D12 0%, #2D1520 50%, #1A1208 100%); position: relative; overflow: hidden; }
.offers-section .section-header h2 { color: var(--white); }
.offers-section .section-header p { color: rgba(255,255,255,0.68); }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.offer-card {
  border: 1px solid rgba(200,169,107,0.25); border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center; color: var(--white);
  transition: var(--tr); background: rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.offer-card:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); transform: translateY(-5px); }
.offer-card.star { background: linear-gradient(135deg, rgba(200,169,107,0.18), rgba(232,130,154,0.18)); border-color: var(--gold); }
.offer-badge { display: inline-block; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.offer-card h3 { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 10px; }
.offer-card p { color: rgba(255,255,255,0.68); font-size: 0.88rem; margin-bottom: 20px; }
.offer-prices { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 22px; }
.offer-prices .old { font-size: 1.05rem; text-decoration: line-through; color: rgba(255,255,255,0.38); }
.offer-prices .new { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.offer-prices .cur { font-size: 0.95rem; color: var(--gold-light); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.why-card { text-align: center; padding: 38px 20px; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); transition: var(--tr); border-top: 4px solid transparent; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-top-color: var(--gold); }
.why-ico { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 18px; }
.why-card h4 { margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: 0.89rem; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); position: relative; transition: var(--tr); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold-light); position: absolute; top: 14px; right: 20px; line-height: 1; opacity: 0.45; }
.stars { color: #FFD700; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { color: var(--text-mid); font-size: 0.93rem; font-style: italic; margin-bottom: 18px; line-height: 1.85; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-info .name { font-weight: 600; font-size: 0.93rem; color: var(--dark); }
.testi-info .service { font-size: 0.78rem; color: var(--text-mid); }

/* ===== INSTAGRAM STRIP ===== */
.insta-strip { background: var(--dark); padding: 70px 0; text-align: center; }
.insta-strip h2 { color: var(--white); margin-bottom: 10px; }
.insta-strip p { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 0.95rem; }
.insta-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-item:hover img { transform: scale(1.07); }
.insta-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.insta-item:hover .insta-item-overlay { background: rgba(200,169,107,0.55); }
.insta-item-overlay i { color: var(--white); font-size: 1.6rem; opacity: 0; transition: var(--tr); }
.insta-item:hover .insta-item-overlay i { opacity: 1; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { width: 100%; height: 195px; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 195px; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-body { padding: 22px; }
.blog-tag { display: inline-block; background: var(--rose-light); color: var(--rose-dark); font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.38; color: var(--dark); }
.blog-card p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-mid); }
.blog-meta .more { color: var(--rose); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.blog-meta .more:hover { color: var(--rose-dark); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, var(--gold) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -40%; right: -15%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-section::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 26px; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.cta-phone a { color: var(--white); font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #111018; color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; margin-bottom: 14px; border: 2px solid var(--gold); }
.footer-brand h3 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; margin-bottom: 6px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.soc-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.65); transition: var(--tr); }
.soc-link:hover { background: var(--rose); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; display: flex; align-items: center; gap: 7px; transition: var(--tr); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.f-contact-ico { color: var(--gold); font-size: 0.95rem; margin-top: 4px; flex-shrink: 0; }
.f-contact-item p, .f-contact-item a { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.65); }
.f-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold-light); }

/* ===== FLOATING WHATSAPP ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 990; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-float-row { display: flex; align-items: center; gap: 10px; }
.wa-label { background: var(--dark); color: var(--white); padding: 7px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; white-space: nowrap; box-shadow: var(--shadow); opacity: 0; transform: translateX(8px); transition: var(--tr); pointer-events: none; }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--white); box-shadow: 0 4px 22px rgba(37,211,102,0.52);
  transition: var(--tr); animation: pulse-wa 2.5s ease-in-out infinite; text-decoration: none;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.65); color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 148px 0 64px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A0D12 0%, #2D1520 50%, #1A1208 100%);
  text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,169,107,0.15), rgba(232,130,154,0.12)); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto; font-size: 1.02rem; }

/* ===== SERVICE DETAIL PAGE ===== */
.svc-cat { margin-bottom: 65px; }
.svc-cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.svc-cat-ico { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.svc-cat-head h2 { font-size: 1.7rem; }
.svc-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: var(--tr); }
.svc-item:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-item h4 { font-size: 1rem; margin-bottom: 7px; }
.svc-item p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 14px; }
.svc-item-bot { display: flex; align-items: center; justify-content: space-between; }
.svc-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--rose-dark); }

/* ===== TARIFS TABLE ===== */
.tarif-section { margin-bottom: 48px; }
.tarif-section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.tarif-section-title h3 { font-size: 1.45rem; }
.price-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table thead tr { background: linear-gradient(135deg, var(--rose-dark), var(--rose)); }
.price-table th { padding: 14px 20px; text-align: left; color: var(--white); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px; }
.price-table th:last-child { text-align: right; }
.price-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.price-table td:last-child { text-align: right; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--rose-dark); }
.price-table tr:hover td { background: var(--rose-ultra); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .promo-price { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; }
.price-table .promo-price .old { font-size: 0.82rem; text-decoration: line-through; color: var(--text-mid); font-weight: 400; font-family: 'Raleway', sans-serif; }
.price-table .promo-price .new { color: var(--rose-dark); }
.pack-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); transition: var(--tr); }
.pack-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.pack-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.pack-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; }
.pack-price { display: flex; align-items: baseline; gap: 8px; }
.pack-price .old { font-size: 0.95rem; text-decoration: line-through; color: var(--text-mid); }
.pack-price .new { font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 700; color: var(--rose-dark); }

/* ===== GALLERY ===== */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border-radius: 50px; border: 2px solid var(--border); background: var(--white); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--tr); color: var(--text-mid); font-family: 'Raleway', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-ov { position: absolute; inset: 0; background: rgba(26,16,21,0); display: flex; align-items: center; justify-content: center; transition: var(--tr); }
.gallery-item:hover .gallery-ov { background: rgba(26,16,21,0.52); }
.gallery-ov i { color: var(--white); font-size: 1.8rem; opacity: 0; transition: var(--tr); }
.gallery-item:hover .gallery-ov i { opacity: 1; }
.video-item { grid-column: span 2; }
.video-item video { width: 100%; border-radius: var(--radius); display: block; }

/* ===== BLOG PAGE ===== */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; }
.blog-post-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 28px; transition: var(--tr); }
.blog-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-post-img { width: 100%; height: 250px; object-fit: cover; }
.blog-post-img-placeholder { width: 100%; height: 250px; background: linear-gradient(135deg, var(--rose-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-post-body { padding: 28px; }
.blog-post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-post-meta .tag { display: inline-block; background: var(--rose-light); color: var(--rose-dark); font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.blog-post-meta .date { color: var(--text-mid); font-size: 0.83rem; }
.blog-post-card h2 a { color: var(--dark); font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.3; }
.blog-post-card h2 a:hover { color: var(--rose-dark); }
.blog-post-card p { color: var(--text-mid); font-size: 0.93rem; margin: 10px 0 20px; line-height: 1.75; }

/* Sidebar */
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); margin-bottom: 26px; }
.sidebar-widget h3 { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); color: var(--dark); }
.sidebar-widget ul li { padding: 9px 0; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--text); font-size: 0.88rem; display: flex; align-items: center; gap: 7px; transition: var(--tr); }
.sidebar-widget ul li a:hover { color: var(--rose); padding-left: 4px; }
.sidebar-wa { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); border-radius: var(--radius-lg); padding: 26px; text-align: center; color: var(--white); margin-bottom: 26px; }
.sidebar-wa h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-wa p { font-size: 0.85rem; opacity: 0.88; margin-bottom: 18px; }

/* ===== BLOG ARTICLE ===== */
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-header { margin-bottom: 38px; }
.article-header .tag { display: inline-block; background: var(--rose-light); color: var(--rose-dark); font-size: 0.72rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.article-header h1 { font-size: clamp(1.7rem,3.5vw,2.4rem); margin-bottom: 18px; line-height: 1.3; }
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--border); color: var(--text-mid); font-size: 0.87rem; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-feat-img { width: 100%; border-radius: var(--radius-lg); margin: 30px 0; box-shadow: var(--shadow-hover); }
.article-body h2 { font-size: 1.55rem; margin: 30px 0 14px; color: var(--dark); }
.article-body h3 { font-size: 1.15rem; margin: 22px 0 10px; color: var(--rose-dark); }
.article-body p { color: var(--text-mid); margin-bottom: 15px; line-height: 1.9; }
.article-body ul, .article-body ol { margin: 0 0 15px 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--text-mid); margin-bottom: 7px; line-height: 1.75; }
.highlight-box { background: var(--rose-light); border-left: 4px solid var(--rose); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 22px 0; }
.highlight-box p { margin-bottom: 0; color: var(--rose-dark); font-weight: 500; }
.article-cta { background: linear-gradient(135deg, #1A0D12, #2D1520); border-radius: var(--radius-lg); padding: 38px; text-align: center; margin: 38px 0; color: var(--white); }
.article-cta h3 { color: var(--gold-light); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.7); font-size: 0.93rem; margin-bottom: 22px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border-radius: var(--radius); background: var(--cream); margin-bottom: 14px; transition: var(--tr); }
.contact-info-card:hover { background: var(--rose-light); }
.c-ico { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--white); flex-shrink: 0; }
.c-detail h4 { font-size: 0.95rem; margin-bottom: 5px; }
.c-detail p, .c-detail a { color: var(--text-mid); font-size: 0.92rem; line-height: 1.6; }
.c-detail a:hover { color: var(--rose-dark); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); margin-top: 28px; }
.map-wrap iframe { width: 100%; height: 340px; border: none; display: block; }
.hours-list { margin-top: 20px; }
.hour-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.hour-row:last-child { border-bottom: none; }
.hour-row .day { font-weight: 500; color: var(--dark); }
.hour-row .time { color: var(--text-mid); }
.hour-row.closed .time { color: var(--rose); font-weight: 500; }

/* ===== PRODUCTS PAGE ===== */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.prod-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.prod-img { width: 100%; height: 230px; object-fit: cover; background: var(--cream); }
.prod-img-placeholder { width: 100%; height: 230px; background: linear-gradient(135deg, var(--rose-ultra), var(--cream)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.prod-body { padding: 22px; }
.prod-cat { display: inline-block; background: var(--gold-light); color: var(--gold-dark); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.prod-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.prod-card p { color: var(--text-mid); font-size: 0.88rem; margin-bottom: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,0.52); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.aos { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.aos.show { opacity: 1; transform: translateY(0); }
.aos-d1 { transition-delay: 0.1s; }
.aos-d2 { transition-delay: 0.2s; }
.aos-d3 { transition-delay: 0.3s; }
.aos-d4 { transition-delay: 0.4s; }
.aos-d5 { transition-delay: 0.5s; }
.aos-d6 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 42px; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-right .btn { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { width: 100px; height: 100px; bottom: -14px; right: -10px; }
  .services-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .svc-items { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .video-item { grid-column: span 1; }
}
@media (max-width: 480px) {
  .svc-items { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .wa-float { bottom: 18px; right: 18px; }
  .wa-btn { width: 52px; height: 52px; font-size: 1.55rem; }
}
