/* ===== SERVICE & PAGE SHARED STYLES ===== */

/* Breadcrumb */
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--mortar);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== SERVICE HERO ===== */
.service-hero {
  background: linear-gradient(160deg, #0e0b09 0%, #1a1410 50%, #0e0b09 100%);
  border-bottom: 2px solid rgba(201,168,76,0.15);
  padding: 9rem 2rem 5rem;
}
.service-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.service-hero-icon { font-size: 3.5rem; margin-bottom: 1.2rem; }
.service-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.service-hero h1 em { display: block; color: var(--gold); font-style: italic; }
.service-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mortar-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ===== PAGE HERO (contact etc) ===== */
.page-hero {
  background: linear-gradient(160deg, #0e0b09 0%, #1a1410 50%, #0e0b09 100%);
  border-bottom: 2px solid rgba(201,168,76,0.15);
  padding: 9rem 2rem 5rem;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: 1rem; font-weight: 300; color: var(--mortar-light); line-height: 1.75; }

/* ===== SERVICE MAIN ===== */
.service-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.service-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.service-section:last-of-type { border-bottom: none; margin-bottom: 2rem; }

.service-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.service-section h2 em { color: var(--gold); font-style: italic; }

.service-section p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--mortar-light);
  font-weight: 300;
  margin-bottom: 1rem;
}
.service-section p strong { color: var(--gold); font-weight: 500; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.2rem;
}
.service-list li {
  font-size: 0.93rem;
  color: var(--mortar-light);
  font-weight: 300;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.55;
}
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* CTA Box */
.service-cta-box {
  background: linear-gradient(135deg, #1a1410, #221a11);
  border: 1.5px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  text-align: center;
  margin-top: 0.5rem;
}
.service-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.service-cta-box p { font-size: 0.9rem; color: var(--mortar-light); font-weight: 300; margin-bottom: 1.8rem; }
.service-cta-box .contact-buttons { justify-content: center; }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 90px;
  background: #100d0a;
  border: 1.5px solid rgba(201,168,76,0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sidebar-links li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--mortar-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-links li:last-child a { border-bottom: none; }
.sidebar-links li a:hover { color: var(--gold); padding-left: 0.5rem; }
.sidebar-cta p { font-size: 0.82rem; color: var(--mortar); font-weight: 300; line-height: 1.5; }

/* ===== CONTACT PAGE ===== */
.contact-main { padding: 5rem 2rem; }

.contact-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.contact-btn-big {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  text-decoration: none;
  border: 2px solid;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.contact-btn-big:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.contact-btn-big.telegram { background: rgba(36,161,222,0.08); border-color: #24a1de; color: #24a1de; }
.contact-btn-big.telegram:hover { background: rgba(36,161,222,0.16); }
.contact-btn-big.viber { background: rgba(123,82,163,0.08); border-color: #7b52a3; color: #a87fd4; }
.contact-btn-big.viber:hover { background: rgba(123,82,163,0.16); }

.cbb-icon svg { width: 3rem; height: 3rem; flex-shrink: 0; }
.cbb-text { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.cbb-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.65; }
.cbb-app { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cbb-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.cbb-arrow { font-size: 1.5rem; opacity: 0.4; transition: opacity 0.2s, transform 0.2s; }
.contact-btn-big:hover .cbb-arrow { opacity: 1; transform: translateX(4px); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.1);
  margin-bottom: 5rem;
}
.contact-info-card { background: #141010; padding: 2.5rem 2rem; text-align: center; }
.cic-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-info-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.contact-info-card p { font-size: 0.9rem; color: var(--mortar-light); font-weight: 300; line-height: 1.7; }
.contact-info-card p strong { color: var(--cream); font-weight: 500; }

.contact-services { margin-bottom: 2rem; }
.contact-service-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.csl-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #1a1410;
  border: 1px solid rgba(201,168,76,0.12);
  text-decoration: none;
  color: var(--mortar-light);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.csl-item:hover { border-color: rgba(201,168,76,0.4); color: var(--gold); background: #201810; }
.csl-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .contact-big { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .service-hero, .page-hero { padding: 7rem 1.5rem 4rem; }
  .service-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .service-sidebar { position: static; }
  .service-cta-box { padding: 2rem 1.5rem; }
  .service-cta-box .contact-buttons { flex-direction: column; }
  .contact-main { padding: 3.5rem 1.5rem; }
  .contact-btn-big { padding: 1.5rem; gap: 1rem; }
  .cbb-number { font-size: 1.25rem; }
  .contact-service-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-service-links { grid-template-columns: 1fr; }
  .cbb-arrow { display: none; }
}
