:root {
  --page-bg: #fffafa;
  --text-main: #2a0f1d;
  --text-soft: #6b4a5e;
  --line-soft: rgba(255, 79, 147, 0.15);

  --accent-soft-bg: #f8dfe8;
  --accent-strong: #d85c8e;
  --accent-hot: #ff1e8a;

  --radius-md: 12px;
  --radius-sm: 8px;

  --fs-xs: .8rem;
  --fs-sm: .9rem;
  --fs-base: 1rem;
  --fs-lg: 1.05rem;
  --fs-xl: 1.4rem;
  --fs-hero: clamp(2rem, 1.2rem + 1vw, 2.4rem);

  --max-page-width: 1280px;
  --max-text-width: 1000px;
}

/* RESET-ish */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--page-bg);
  color: var(--text-main);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: var(--fs-base);
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-soft);
  font-size: var(--fs-base);
  margin-bottom: 1rem;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

/* STRUCTURE */
.section-block {
  padding: 4rem 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.section-block:first-of-type {
  border-top: 0;
}

.section-head,
.why-head,
.gallery-head,
.contact-head,
.reviews-head {
  max-width: var(--max-text-width);
  margin: 0 auto 2rem;
  text-align: center;
}

.section-intro,
.why-intro,
.contact-desc,
.rating-headline,
.gallery-desc {
  color: var(--text-soft);
  font-size: var(--fs-base);
  line-height: 1.6;
}

/* HEADER */
:root {
  --header-h: 64px; /* височината на хедъра за мобилното меню */
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 250, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  height: var(--header-h);
  display: flex;
  flex-direction: column;
}

/* вътрешният бар */
.header-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 0 0 var(--header-h);
  height: var(--header-h);
}

/* лого */
.logo-area {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* десктоп навигация */
.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-main);
}
.main-nav a {
  color: var(--text-main);
  text-decoration: none;
}

/* десктоп телефон */
.call-btn {
  background: var(--accent-strong);
  color: #fff;
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: .6rem .9rem;
  font-size: var(--fs-sm);
  border: 0;
  white-space: nowrap;
  text-decoration: none;
  display: none;
}

/* бургер за мобилно */
.burger-btn {
  background: transparent;
  border: 0;
  padding: .5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  justify-content: center;
  align-items: center;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-main);
  border-radius: 1px;
}

/* на десктоп показваме голямото меню и телефона, крием бургера и мобилното меню */
@media(min-width:900px){
  .main-nav {display:block;}
  .call-btn {display:inline-block;}
  .burger-btn {display:none;}
}

/* ---------- МОБИЛНО ПАДАЩО МЕНЮ (fixed) ---------- */

.mobile-dropdown {
  /* по default е скрито */
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h); /* винаги точно под хедъра, дори след скрол */
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 24px 40px rgba(0,0,0,0.08);

  /* за да може менюто да се скролва, ако е по-дълго от екрана */
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  padding: 1rem 1.25rem 1.5rem;
}

.mobile-dropdown.open {
  display: block;
}

@media(min-width:900px){
  .mobile-dropdown {
    display: none !important;
  }
}

/* вътрешност на мобилното меню */
.mobile-dropdown ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: #fff;
  overflow: hidden;
}

.mobile-dropdown li {
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
}
.mobile-dropdown li:last-child {
  border-bottom: 0;
}

.mobile-dropdown a {
  display: block;
  padding: .9rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  line-height: 1.4;
  background: #fff;
}

/* контакти вътре в менюто */
.mobile-contacts {
  display: grid;
  gap: .75rem;
  font-size: var(--fs-sm);
  line-height: 1.4;
  font-weight: 500;
}

.mobile-contact-btn {
  display: block;
  text-align: center;
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  background: var(--accent-strong);
  border: 1px solid var(--accent-strong);
  word-break: break-word;
}

.mobile-contact-btn.alt {
  background: #fff;
  color: var(--accent-strong);
  border:1px solid var(--line-soft);
}

/* Desktop breakpoint */
@media(min-width:900px){
  .main-nav {display:block;}
  .call-btn {display:inline-block;}
  .burger-btn {display:none;}
  .mobile-dropdown {display:none !important;}
}

/* Language switch – desktop */
.lang-switch {
  margin-left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lang-switch:hover {
  background-color: #ffffff;
  color: #111827;
  border-color: #ffffff;
}

/* Да не се сблъсква с burger-а на по-малки екрани */
@media (max-width: 900px) {
  .lang-switch {
    display: none;
  }
}

/* Mobile language button – използва стила на mobile-contact-btn */
.lang-mobile {
  font-weight: 600;
  text-transform: uppercase;
}


.lang-switch {
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lang-switch:hover {
  opacity: 0.7;
}

.lang-flag {
  width: 26px;
  height: auto;
  border-radius: 3px;
  display: block;
}

/* Mobile */
.lang-mobile img {
  width: 26px;
  height: auto;
  margin-right: 6px;
}


/* HERO */
#hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(248,223,232,.55) 0%, rgba(255,250,250,0) 60%),
    var(--page-bg);
  padding: 4rem 1.25rem 3rem;
}
.hero-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  align-items: center;
}
@media(min-width:900px){
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-copy {
  max-width: 620px;
  margin: 0 auto;
}
.hero-preheading {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--accent-strong);
  background: var(--accent-soft-bg);
  border-radius: var(--radius-md);
  padding: .4rem .75rem;
  border: 1px solid var(--line-soft);
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: var(--fs-hero);
  margin-bottom: 1rem;
}
.hero-desc-block p {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text-soft);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}
.btn-primary {
  background: var(--accent-strong);
  color: #fff;
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: .8rem 1.2rem;
  font-size: var(--fs-base);
  line-height: 1.2;
  border: 0;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.hero-phone {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-main);
}

.hero-image-card {
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  padding: 1rem;
}
.hero-image-card img {
  width:100%;
  height:auto;
  border-radius: var(--radius-sm);
}
.hero-image-note {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin-top: .75rem;
  line-height: 1.4;
  text-align: center;
}

/* hero "SEO" text */
.hero-seo {
  max-width: var(--max-text-width);
  margin: 3rem auto 0;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--text-soft);
}
.hero-seo p {
  margin-bottom: 1rem;
}

/* PROMO SPLIT */
.promo-split {
  background: linear-gradient(90deg, #fffafa 0%, #ffb2d6 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 4rem 1.25rem;
  color: var(--text-main);
}
.promo-inner {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  align-items: center;
}
@media(min-width:900px){
  .promo-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.promo-text {
  max-width: 600px;
  margin: 0 auto;
}
.promo-text h2 {
  font-size: var(--fs-xl);
  margin-bottom: 1rem;
  color: var(--text-main);
}
.promo-lead {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1rem;
}
.promo-list {
  list-style: none;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1rem;
}
.promo-list li {
  margin-bottom: .4rem;
  position: relative;
  padding-left: 1rem;
}
.promo-list li::before {
  content: "•";
  color: var(--accent-hot);
  position: absolute;
  left: 0;
  top: 0;
}
.promo-note {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.promo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}
.btn-outline {
  background: #fff;
  color: var(--accent-strong);
  border-radius: var(--radius-md);
  padding: .8rem 1.2rem;
  font-size: var(--fs-base);
  line-height: 1.2;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  font-weight: 500;
}
.promo-bottom-info {
  font-size: var(--fs-xs);
  color: var(--text-main);
  line-height: 1.4;
  font-weight: 500;
}
.promo-image img {
  width:100%;
  height:auto;
  border-radius: var(--radius-md);
  border:1px solid var(--line-soft);
  object-fit: cover;
}

/* SERVICES */
#services .section-head {
  text-align: center;
  margin-bottom: 2rem;
}
#services h2 {
  font-size: var(--fs-xl);
  margin-bottom: .5rem;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media(min-width:900px){
  .services-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.service-block {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.service-img {
  margin-bottom:1rem;
}
.service-img img {
  width:100%;
  border-radius: var(--radius-md);
  border:1px solid var(--line-soft);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.service-list {
  font-size: var(--fs-base);
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  padding-left: 1rem;
}
.service-list li {
  margin-bottom: .5rem;
}
.service-note {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.services-extra-visual {
  max-width: var(--max-page-width);
  margin: 3rem auto 0;
  padding: 0 1.25rem;
}
.services-extra-visual img {
  width:100%;
  border-radius: var(--radius-md);
  border:1px solid var(--line-soft);
  object-fit: cover;
}

.services-seo {
  max-width: var(--max-text-width);
  margin: 3rem auto 0;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-soft);
  text-align: center;
}

/* LASER PACKAGES GRID */
.laser-packages {
  max-width: var(--max-page-width);
  margin: 3rem auto 0;
  padding: 0 1.25rem;
  text-align: center;
}
.laser-packages-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.laser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
@media(min-width:900px){
  .laser-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.laser-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1rem .75rem;
  text-align: center;
}
.laser-zone {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: .4rem;
}
.laser-price {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.4;
}
.laser-price strong {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--accent-strong);
}
.laser-footnote {
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: var(--text-soft);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* WHY US */
#whyus .why-head {
  text-align: center;
  margin-bottom: 2rem;
}
#whyus h2 {
  font-size: var(--fs-xl);
  margin-bottom: .75rem;
}
.why-intro {
  max-width: var(--max-text-width);
  margin: 0 auto;
}
.why-grid {
  max-width: var(--max-page-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width:900px){
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background:#fff;
  padding:1.25rem 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--text-main);
}
.why-card p {
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}
.why-img-row {
  max-width: var(--max-page-width);
  margin: 3rem auto 0;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns:1fr;
  gap:1rem;
}
@media(min-width:700px){
  .why-img-row {
    grid-template-columns:1fr 1fr;
  }
}
.why-img-row img {
  width:100%;
  height:auto;
  border-radius:var(--radius-md);
  border:1px solid var(--line-soft);
  object-fit:cover;
}
.why-seo {
  max-width: var(--max-text-width);
  margin:3rem auto 0;
  font-size:var(--fs-sm);
  line-height:1.6;
  color:var(--text-soft);
  text-align:center;
}

/* CONTACT */
#contact .contact-head {
  text-align: center;
  margin-bottom: 2rem;
}
#contact h2 {
  font-size: var(--fs-xl);
  margin-bottom: .5rem;
}
.contact-grid {
  max-width:var(--max-page-width);
  margin:0 auto;
  padding:0 1.25rem;
  display:grid;
  grid-template-columns:1fr;
  gap:1.5rem 2rem;
}
@media(min-width:900px){
  .contact-grid {
    grid-template-columns:1fr 1fr;
    align-items: start;
    gap:1.5rem 2rem;
  }
}
.contact-card,
.contact-form {
  border:1px solid var(--line-soft);
  border-radius:var(--radius-md);
  background:#fff;
  padding:1rem 1rem 1.5rem;
  margin:0;
  max-width:100%;
}
.contact-card h3,
.contact-form h3 {
  font-size:1.05rem;
  font-weight:600;
  color:var(--text-main);
  margin-bottom:1.25rem;
}
.contact-row {
  margin-bottom:1rem;
  font-size:var(--fs-base);
  line-height:1.4;
}
.contact-label{
  font-size:var(--fs-xs);
  font-weight:600;
  color:var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom:.25rem;
}
.contact-val{
  font-size:var(--fs-base);
  color:var(--text-main);
  font-weight:500;
  line-height:1.4;
}
.subtext {
  font-size:var(--fs-xs);
  color:var(--text-soft);
  font-weight:400;
}
.worktime-table{
  font-size:var(--fs-sm);
  line-height:1.4;
  color:var(--text-soft);
  margin-top:.5rem;
}
.map-embed iframe {
  width:100%;
  height:220px;
  border:0;
  border-radius:var(--radius-sm);
  border:1px solid var(--line-soft);
}
.form-group{
  margin-bottom:1rem;
}
label{
  display:block;
  font-size:var(--fs-xs);
  font-weight:600;
  color:var(--text-main);
  margin-bottom:.4rem;
  text-transform: uppercase;
  letter-spacing:.05em;
}
input, select, textarea{
  width:100%;
  font-family:"Montserrat",sans-serif;
  font-size:var(--fs-base);
  line-height:1.4;
  color:var(--text-main);
  background:#fff;
  border:1px solid var(--line-soft);
  border-radius:var(--radius-sm);
  padding:.8rem 1rem;
  font-weight:400;
}
textarea{
  resize:vertical;
  min-height:120px;
}
.form-submit-btn{
  width:100%;
  border:0;
  cursor:pointer;
  background:var(--accent-strong);
  color:#fff;
  font-size:var(--fs-base);
  line-height:1.2;
  font-weight:500;
  border-radius:var(--radius-md);
  padding:.9rem 1.2rem;
  text-align:center;
  margin-top:.5rem;
}
.status-box{
  margin-top:1rem;
  border-radius:var(--radius-sm);
  font-size:var(--fs-sm);
  line-height:1.4;
  font-weight:500;
  padding:.75rem 1rem;
  text-align:center;
}
.status-ok{
  background:#eafff2;
  border:1px solid #2ecc71;
  color:#1e7e43;
}
.status-err{
  background:#fff2f2;
  border:1px solid var(--accent-strong);
  color:#a0002c;
}

/* FOOTER */
.site-footer {
  background: radial-gradient(circle at 20% 20%, #4a002a 0%, #6b003d 70%);
  color:#fff;
  padding:3rem 1.25rem 2rem;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:4rem;
  font-size: var(--fs-sm);
  line-height:1.5;
}
.footer-inner {
  max-width:var(--max-page-width);
  margin:0 auto;
}
.footer-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}
@media(min-width:900px){
  .footer-grid {
    grid-template-columns:repeat(4,1fr);
  }
}
.footer-logo-img {
  width:auto;
  height:48px;
  object-fit:contain;
  margin-bottom:1rem;
  border-radius:0;
}
.footer-block {
  color:#fff;
}
.footer-heading{
  font-size:var(--fs-base);
  font-weight:600;
  color:#fff;
  margin-bottom:.75rem;
  letter-spacing:-0.03em;
}
.footer-small {
  color:rgba(255,255,255,.8);
  font-weight:400;
  font-size:var(--fs-sm);
  line-height:1.5;
}
.footer-list {
  list-style:none;
  padding:0;
  margin:0;
  font-size:var(--fs-sm);
  line-height:1.6;
  color:#fff;
}
.footer-list li a{
  color:#fff;
  text-decoration:none;
}
.footer-link-strong {
  color:#fff;
  font-weight:600;
  text-decoration:none;
}
.social-row {
  display: grid;
  gap: 1rem;
}
.social-link {
  color:#fff;
  font-size:var(--fs-sm);
  font-weight:500;
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
}
.social-icon {
  width:32px;
  height:32px;
  border-radius:50%;
  background:#fff;
  color:#4a0030;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.social-icon svg {
  width:16px;
  height:16px;
}
.social-text {
  line-height:1.3;
}
.fb-icon { background:#fff; }
.ig-icon { background:#fff; }
.legal {
  border-top:1px solid rgba(255,255,255,.2);
  margin-top:2rem;
  padding-top:1rem;
  font-size:var(--fs-xs);
  line-height:1.4;
  color:rgba(255,255,255,.6);
  text-align:center;
}

/* RESPONSIVE TWEAKS */
@media(max-width:480px){
  .hero-headline {
    font-size: 1.8rem;
  }
  .call-btn {
    font-size: .8rem;
  }
  .btn-primary,
  .btn-outline,
  .form-submit-btn {
    width:100%;
    text-align:center;
  }
  .hero-phone { width:100%; font-size:var(--fs-sm); }
}
