﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* HERO */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* BUTON PREMIUM */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ff9800, #ff6a00);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.45);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Hover effect */
.btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.6);
    background: linear-gradient(135deg, #ffa726, #ff7a18);
}

/* Click effect */
.btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 8px 18px rgba(255, 152, 0, 0.35);
}


/* CONTAINER */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* CARDURI */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* GALERIE */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FORMULAR */
.form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.form input,
.form textarea,
.form button {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    border: none;
}

.form input,
.form textarea {
    background: #fff;
}

.form button {
    background: #ff9800;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 28px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}


.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.logo {
    font-size: 1.2rem;
}
/* BACKGROUND PENTRU FIECARE PAGINA */

body.home {
    background: url("images/bg-home.jpg") no-repeat center center fixed;
    background-size: cover;
}

body.servicii {
    background: url("images/bg-servicii.jpg") no-repeat center center fixed;
    background-size: cover;
}

body.galerie {
    background: url("images/bg-galerie.jpg") no-repeat center center fixed;
    background-size: cover;
}

body.rezervare {
    background: url("images/bg-rezervare.jpg") no-repeat center center fixed;
    background-size: cover;
}
.container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
}
/* Fundal + overlay pentru paginile cu background */
body {
  min-height: 100vh;
}

/* overlay intunecat peste poza de fundal */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* ca sa nu "pluteasca" continutul lipit de margini */
.container {
  padding-top: 40px;
  padding-bottom: 60px;
}
/* Card pentru zona cu formular */
.container {
  max-width: 1000px;
}

.form {
  max-width: 520px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Titluri mai lizibile */
h2 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.form input,
.form textarea {
  border: 1px solid rgba(0,0,0,0.08);
  outline: none;
  transition: 0.2s;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(255,152,0,0.9);
  box-shadow: 0 0 0 4px rgba(255,152,0,0.18);
}
/* CADRAN (CARD) PENTRU HERO */
.hero-card {
  max-width: 720px;
  width: calc(100% - 40px);
  padding: 32px 28px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.hero-card h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.2px;
}

.hero-card p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  opacity: 0.92;
}

/* spatiu intre buton si text */
.hero-card .btn {
  margin-top: 6px;
}
/* NAVBAR links: animatie hover + click */
.navbar ul li a{
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #333;
  text-decoration: none;

  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

/* underline animat */
.navbar ul li a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(135deg, #ff9800, #ff6a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.95;
}

/* hover: background subtil + underline */
.navbar ul li a:hover{
  background: rgba(255, 152, 0, 0.12);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.navbar ul li a:hover::after{
  transform: scaleX(1);
}

/* click: "apasare" */
.navbar ul li a:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
/* PAGE TRANSITION */
body {
  opacity: 0;
  animation: pageFadeIn 400ms ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fade-out la plecare */
body.fade-out {
  animation: pageFadeOut 250ms ease forwards;
}

@keyframes pageFadeOut {
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}
/* ===== PRO FEATURES (cu SVG line icons) ===== */
.pro-features { padding: 70px 0 95px; }

.pro-features .features-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

/* header box */
.pro-features .features-head{
  position: relative;
  padding: 28px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  overflow: hidden;
  animation: floatIn 700ms ease forwards;
}

@keyframes floatIn{
  from{ opacity:0; transform: translateY(14px); }
  to{ opacity:1; transform: translateY(0); }
}

.pro-features .features-head::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,152,0,0.25), transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(circle at 65% 100%, rgba(255,106,0,0.22), transparent 55%);
  filter: blur(10px);
  opacity: 0.95;
  z-index: 0;
}
.pro-features .features-head *{ position: relative; z-index: 1; }

.pro-features .features-head h2{
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
  letter-spacing: 0.2px;
}

.pro-features .features-head h2 span{
  display:inline-block;
  margin-left: 10px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pro-features .features-head p{
  margin: 0;
  color: rgba(255,255,255,0.9);
  max-width: 70ch;
}

/* Contact button */
.pro-features .contact-btn{
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  box-shadow: 0 14px 30px rgba(255,152,0,0.45);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  overflow: hidden;
}

.pro-features .contact-btn:hover{
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 18px 40px rgba(255,152,0,0.62);
  filter: brightness(1.05);
}

.pro-features .contact-btn:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 10px 22px rgba(255,152,0,0.35);
}

.pro-features .contact-btn-glow{
  position:absolute;
  inset:-45%;
  background: radial-gradient(circle, rgba(255,255,255,0.65), transparent 45%);
  transform: translateX(-60%);
  opacity: 0.55;
  transition: transform 450ms ease;
}
.pro-features .contact-btn:hover .contact-btn-glow{
  transform: translateX(60%);
}

/* grid */
.pro-features .features-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

/* cards */
.pro-features .feature-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 450ms ease, opacity 450ms ease, box-shadow 200ms ease;
}

.pro-features .feature-card.in{
  transform: translateY(0);
  opacity: 1;
}

.pro-features .feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}

.pro-features .feature-ico{
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 4px 0 12px;
  border: 4px solid rgba(255,152,0,0.75);
  background: rgba(255,255,255,0.08);
}

/* SVG line style */
.pro-features .feature-ico svg{
  width: 34px;
  height: 34px;
  stroke: rgba(255,255,255,0.95);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pro-features .feature-card h3{
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.05rem;
}

.pro-features .feature-card p{
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* responsive */
@media (max-width: 980px){
  .pro-features .features-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .pro-features .features-grid{ grid-template-columns: 1fr; }
  .pro-features .contact-btn{ position: static; margin-top: 12px; }
  .pro-features .features-head{ padding: 22px 18px; }
}
body {
    padding-top: 80px; /* înălțimea navbar-ului */
}
body.home .navbar {
    background: rgba(255, 255, 255, 0.726);
}
/* ===== SECTIUNE SERVICII – GLASS DARK ===== */
.services-section {
    background: rgba(0, 0, 0, 0.32); /* transparent + inchis */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
    padding: 44px 32px;
    margin: 60px auto;
}
.services-section h2 {
    color: #fff;
    text-shadow: 0 4px 16px rgba(0,0,0,0.55);
}
/* ===== GLASS DARK pentru pagini (Galerie/Rezervare) ===== */
.glass-section {
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
    padding: 44px 32px;
    margin: 60px auto;
}

.glass-section h2 {
    color: #fff;
    text-shadow: 0 4px 16px rgba(0,0,0,0.55);
}
.gallery img {
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    transition: transform 200ms ease;
}

.gallery img:hover {
    transform: translateY(-4px) scale(1.02);
}
/* ===== NAVBAR PREMIUM (logo centrat) ===== */
.navbar{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  padding: 14px 26px;

  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);

  transition: background 200ms ease, box-shadow 200ms ease, padding 200ms ease;
}

/* lasa spatiu pentru navbar */
body{
  padding-top: 76px;
}

/* centru: brand */
.brand{ grid-column: 2; justify-self: center; }
.navlinks{ grid-column: 3; justify-self: end; }

/* linkurile de meniu */
.navlinks{
  display: flex;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Brand premium */
.brand-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 900;
  letter-spacing: 0.2px;
  padding: 8px 12px;
  border-radius: 999px;

  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.brand-mark{
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  background: rgba(255,152,0,0.12);
  border: 1px solid rgba(255,152,0,0.22);
  box-shadow: 0 10px 24px rgba(255,152,0,0.18);
  font-size: 18px;
}

.brand-text{
  font-size: 1.1rem;
  line-height: 1;
}

/* hover pe brand */
.brand-link:hover{
  transform: translateY(-1px);
  background: rgba(255,152,0,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}
.brand-link:active{
  transform: translateY(1px) scale(0.98);
}

/* ===== linkuri navbar: underline animat + pill hover ===== */
.navbar ul li a{
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #222;
  text-decoration: none;

  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
  overflow: hidden;
}

.navbar ul li a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.95;
}

.navbar ul li a:hover{
  background: rgba(255,152,0,0.12);
  color: #111;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.navbar ul li a:hover::after{
  transform: scaleX(1);
}
.navbar ul li a:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Pagina activa (manual cu class="active") */
.navbar ul li a.active{
  background: rgba(255,152,0,0.16);
  color: #111;
}
.navbar ul li a.active::after{
  transform: scaleX(1);
}

/* ===== efect premium la scroll (navbar mai compact + mai solid) ===== */
body.scrolled .navbar{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  padding: 10px 26px;
}
/* FONT GLOBAL */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.navbar ul li a.active {
    font-weight: 700;
}
.navbar ul li a {
    text-rendering: optimizeLegibility;
}
/* ===== UNIQUE HOME SECTION: DOG SIGNATURE (Premium) ===== */
.dog-signature{
  padding: 62px 0 92px;
}
.dog-signature__wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.dog-signature__top{
  position: relative;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 18px;

  padding: 26px 26px;
  border-radius: 26px;

  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  overflow: hidden;

  transform: translateY(16px);
  opacity: 0;
  transition: transform 600ms ease, opacity 600ms ease;
}

.dog-signature.in .dog-signature__top{
  transform: translateY(0);
  opacity: 1;
}

.dog-signature__top::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,152,0,0.22), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(circle at 70% 100%, rgba(255,106,0,0.18), transparent 55%);
  filter: blur(14px);
  opacity: 0.9;
  z-index: 0;
}
.dog-signature__top *{ position: relative; z-index: 1; }

.dog-signature__title h2{
  margin: 0 0 8px;
  color:#fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.1vw, 2.35rem);
  text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.dog-signature__title h2 span{
  display:inline-block;
  margin-left: 10px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dog-signature__title p{
  margin: 0;
  color: rgba(255,255,255,0.88);
  max-width: 70ch;
}

/* CTA WhatsApp */
.dog-signature__cta{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #fff;

  background: linear-gradient(135deg, #ff9800, #ff6a00);
  box-shadow: 0 14px 30px rgba(255,152,0,0.45);

  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  overflow:hidden;
  white-space: nowrap;
}
.dog-signature__cta:hover{
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 18px 40px rgba(255,152,0,0.62);
  filter: brightness(1.05);
}
.dog-signature__cta:active{
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 10px 22px rgba(255,152,0,0.35);
}
.dog-signature__cta-glow{
  position:absolute;
  inset:-45%;
  background: radial-gradient(circle, rgba(255,255,255,0.65), transparent 45%);
  transform: translateX(-60%);
  opacity: 0.55;
  transition: transform 450ms ease;
}
.dog-signature__cta:hover .dog-signature__cta-glow{
  transform: translateX(60%);
}

/* grid cards */
.dog-signature__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px;

  transform: translateY(16px);
  opacity: 0;
  transition: transform 650ms ease 120ms, opacity 650ms ease 120ms;
}
.dog-signature.in .dog-signature__grid{
  transform: translateY(0);
  opacity: 1;
}

.dog-chip{
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.dog-chip:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.35);
  border-color: rgba(255,152,0,0.35);
}

.dog-chip__icon{
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 10px;

  border: 4px solid rgba(255,152,0,0.80);
  background: rgba(255,255,255,0.06);
}
.dog-chip__icon svg{
  width: 30px;
  height: 30px;
  stroke: rgba(255,255,255,0.95);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dog-chip h3{
  margin: 0 0 6px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
}
.dog-chip p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* bottom pills bar */
.dog-signature__bar{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;

  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap: 10px;

  transform: translateY(16px);
  opacity: 0;
  transition: transform 650ms ease 240ms, opacity 650ms ease 240ms;
}
.dog-signature.in .dog-signature__bar{
  transform: translateY(0);
  opacity: 1;
}

.pill{
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.dot{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,152,0,0.85);
  opacity: 0.9;
}

/* responsive */
@media (max-width: 980px){
  .dog-signature__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .dog-signature__top{ flex-direction: column; align-items: flex-start; }
  .dog-signature__cta{ align-self: flex-start; }
  .dog-signature__grid{ grid-template-columns: 1fr; }
}
/* ===== DOG PRICING (premium, diferit) ===== */
.dog-pricing{
  padding: 70px 0 90px;
}

.dog-pricing__wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.dog-pricing__head{
  margin-bottom: 16px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 22px 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.30);
}

.dog-pricing__head h2{
  margin: 0 0 6px;
  font-family: "Fraunces", serif; /* font unic */
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  text-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.dog-pricing__head p{
  margin: 0;
  color: rgba(255,255,255,0.86);
  max-width: 80ch;
}

.dog-pricing__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.price-box{
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.box-title{
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif; /* font unic */
  font-weight: 700;
  color: #fff;
  font-size: 1.35rem;
}

.box-ico{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,152,0,0.14);
  border: 1px solid rgba(255,152,0,0.22);
}

.price-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-row{
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-row .name{
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.price-row .value{
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.price-row .dots{
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.desc{
  margin: -6px 0 6px;
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  line-height: 1.35;
}

.price-btn{
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  box-shadow: 0 14px 30px rgba(255,152,0,0.38);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.price-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(255,152,0,0.55);
}

.price-btn:active{
  transform: translateY(1px) scale(0.98);
}

.price-btn--ghost{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}

.price-btn--ghost:hover{
  background: rgba(255,255,255,0.14);
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

/* Responsive */
@media (max-width: 980px){
  .dog-pricing__grid{ grid-template-columns: 1fr; }
}
.hero.hero-top{
  min-height: 62vh;          /* zona stabila (nu se misca) */
  display: flex;
  justify-content: center;   /* centru pe orizontala */
  align-items: flex-start;   /* sus */
  padding-top: 110px;        /* distanta de navbar */
  padding-bottom: 40px;
}

.hero-card{
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
}
/* ====== SERVICES: mai inchis + premium ====== */
.services-section {
  /* cadranul mare */
  background: rgba(10, 12, 16, 0.55);          /* mai inchis */
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  border-radius: 26px;
  padding: 34px 26px;
}

/* titlurile din cadran */
.services-section h2 {
  color: rgba(255,255,255,0.92);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 12px 30px rgba(0,0,0,0.45);
  margin-bottom: 22px;
}

/* grid (daca ai .cards) */
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px){
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .cards { grid-template-columns: 1fr; }
}

/* cardurile (cele albe) -> premium glass dark */
.card {
  background: rgba(255, 255, 255, 0.10);      /* NU alb */
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);

  border-radius: 18px;
  padding: 18px 16px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: default;

  font-family: "Inter", sans-serif;
  font-weight: 600;
}

/* emoji/icon mai “premium” */
.card span,
.card .icon {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* hover premium */
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 152, 0, 0.35);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.50),
    0 0 0 6px rgba(255, 152, 0, 0.08);
}

/* click */
.card:active {
  transform: translateY(-1px) scale(0.99);
}
body.home::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 0;
}
body.home > * { position: relative; z-index: 1; }
/* ====== Service accordion (slide) ====== */
.service-item{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* butonul arată ca un card premium */
.service-btn{
  width: 100%;
  text-align: left;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);

  border-radius: 18px;
  padding: 18px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-btn:hover{
  transform: translateY(-3px);
  border-color: rgba(255, 152, 0, 0.35);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.50),
    0 0 0 6px rgba(255, 152, 0, 0.08);
}

.service-btn:active{
  transform: translateY(-1px) scale(0.99);
}

/* panelul care se deschide */
.service-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.service-panel__inner{
  margin-top: -2px;
  padding: 14px 16px;

  background: rgba(10, 12, 16, 0.50);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;

  color: rgba(255,255,255,0.88);
  line-height: 1.55;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

/* starea deschis */
.service-item.open .service-panel{
  max-height: 220px; /* destul pentru 2-4 randuri */
}

.service-item.open .service-btn{
  border-color: rgba(255, 152, 0, 0.38);
}
/* Navbar mereu sus, peste tot */
.navbar{
  position: sticky;   /* sau fixed (vezi mai jos) */
  top: 0;
  z-index: 9999;
}

/* Evita orice impingere de sus */
html, body{
  margin: 0;
  padding: 0;
}

/* Dacă ai o secțiune sus care are margin-top, o anulăm */
body > section:first-of-type,
body > header:first-of-type{
  margin-top: 0;
}
/* Pagina Servicii – poziționare pe verticală */
.services-page{
  min-height: 100vh;
  display: flex;
  align-items: center;      /* centru vertical */
  justify-content: center;  /* centru orizontal */
  padding-top: 120px;       /* coboară sub navbar */
  padding-bottom: 120px;
}

/* Cardul mare cu servicii */
.services-wrapper{
  width: 100%;
  max-width: 1100px;
}
.services-page{
  margin-top: 140px; /* ajustează: 100–180px */
}
/* Pagina Servicii: coboară secțiunile */
body.servicii-page .services-section{
  margin-top: 140px;         /* coboară prima secțiune */
}

body.servicii-page .services-section + .services-section{
  margin-top: 40px;         /* distanță între cele două cadrane */
}
/* ===== FIX: BACKGROUND SERVICII (fortat) ===== */
body.servicii-page{
  background: url("images/dog1.jpg") center / cover no-repeat fixed !important;
  min-height: 100vh;
}
/* =========================
   MOBILE FIRST HELPERS
========================= */
img { max-width: 100%; height: auto; display: block; }
* { box-sizing: border-box; }

.container,
.dog-pricing__wrap,
.dog-signature__wrap{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */
@media (max-width: 720px){
  body{ padding-top: 92px; } /* daca ai navbar fixed */

  .navbar{
    height: auto;
    padding: 10px 14px;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .navbar .logo{
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
  }

  .navbar ul{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  .navbar ul li a{
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
  }
}

/* =========================
   HERO (Acasa) RESPONSIVE
========================= */
@media (max-width: 720px){
  .hero.hero-top{
    min-height: 56vh;
    padding-top: 110px; /* sub navbar */
    padding-bottom: 22px;
  }

  .hero-card{
    width: min(560px, calc(100% - 24px));
    padding: 18px 16px; /* daca ai padding in card */
  }

  .hero-card h1{ font-size: 1.7rem; }
  .hero-card p{ font-size: 1rem; }

  .btn{
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
}

/* =========================
   DOG SIGNATURE RESPONSIVE
========================= */
@media (max-width: 720px){
  .dog-signature{ padding: 42px 0 58px; }

  .dog-signature__top{
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .dog-signature__cta{
    width: 100%;
    justify-content: center;
  }

  .dog-signature__grid{
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .dog-chip{ padding: 16px 14px; }
}

/* =========================
   TARIFE (PRICING) RESPONSIVE
========================= */
@media (max-width: 980px){
  .dog-pricing__grid{ grid-template-columns: 1fr !important; }
}

@media (max-width: 720px){
  .dog-pricing{ padding: 44px 0 58px; }

  .dog-pricing__head{
    padding: 16px 16px;
    border-radius: 18px;
  }

  .price-box{
    padding: 16px 14px;
    border-radius: 18px;
  }

  .price-row{
    gap: 10px;
    font-size: 0.98rem;
  }

  .desc{ font-size: 0.93rem; }
  .price-btn{ width: 100%; }
}

/* =========================
   SERVICII PAGE RESPONSIVE
========================= */
@media (max-width: 720px){
  body.servicii-page{
    padding-top: 92px; /* sub navbar fixed */
  }

  .services-wrapper{
    padding-top: 28px;
    padding-bottom: 70px;
    gap: 28px;
  }

  .services-box{
    width: calc(100% - 24px);
    padding: 18px 14px;
    border-radius: 20px;
  }

  .services-box h2{
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .services-grid{
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .service-card{
    padding: 14px 12px;
    border-radius: 16px;
  }
}

/* =========================
   GALERIE RESPONSIVE
========================= */
@media (max-width: 720px){
  .gallery{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .gallery img{
    border-radius: 18px;
  }
}

/* =========================
   REZERVARE RESPONSIVE
========================= */
@media (max-width: 720px){
  .form{
    width: calc(100% - 24px);
    padding: 16px 14px;
    border-radius: 18px;
  }

  .form input,
  .form textarea,
  .form button{
    width: 100%;
    font-size: 1rem;
  }
}
.about-hotel{
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.about-card{
  max-width: 900px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 50px 45px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-card h2{
  font-family: "Fraunces", serif;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.about-card p{
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #e8e8e8;
  margin-bottom: 18px;
}

.about-card p strong{
  color: #ff9c1a;
}

.about-intro{
  font-size: 18px;
}
@media (max-width: 768px){
  .about-card{
    padding: 35px 25px;
  }

  .about-card h2{
    font-size: 28px;
  }

  .about-card p{
    font-size: 16px;
  }
}
/* =========================
   FOOTER PREMIUM
========================= */
.site-footer{
  margin-top: 90px;
  background: linear-gradient(135deg, rgba(255,140,0,.92), rgba(255,110,60,.92));
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.25);
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:-80px -120px auto -120px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%);
  filter: blur(10px);
  pointer-events:none;
}

.footer-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 18px 22px;
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr 1fr;
  gap: 22px;
}

.footer-col h4{
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: .2px;
}

.footer-logo{
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-desc{
  font-family: Inter, system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: .92;
  margin: 0 0 16px;
}

/* CTA */
.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #1c1208;
  background: rgba(255,255,255,.92);
  text-decoration: none;
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 800;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .15s ease, box-shadow .2s ease;
}

.footer-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
}

.footer-cta:active{
  transform: translateY(0px) scale(.99);
}

.footer-cta-glow{
  position:absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

.footer-cta:hover .footer-cta-glow{
  opacity: 1;
}

/* Social */
.footer-social{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a{
  width: 42px; height: 42px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color: #fff;
  text-decoration:none;
  font-weight: 900;
  font-family: Inter, system-ui, sans-serif;
  transition: transform .15s ease, background .2s ease;
}

.footer-social a:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.26);
}

/* Linkuri */
.footer-col.links ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col.links a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 650;
}

.footer-col.links a:hover{
  text-decoration: underline;
}

/* Info card */
.info-card{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 14px 14px;
  backdrop-filter: blur(10px);
}

.info-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  font-family: Inter, system-ui, sans-serif;
}

.info-row:last-child{ border-bottom: none; }

.info-row .k{ opacity: .92; font-weight: 650; }
.info-row .v{ opacity: .96; font-weight: 800; }

.info-row a{
  color: #fff;
  text-decoration: none;
}

.info-row a:hover{ text-decoration: underline; }

.small-links{
  margin-top: 12px;
  font-size: 13.5px;
  opacity: .9;
  font-family: Inter, system-ui, sans-serif;
}

.small-links a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.small-links a:hover{ text-decoration: underline; }

/* Newsletter */
.muted{
  font-family: Inter, system-ui, sans-serif;
  opacity: .92;
  font-size: 14.5px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.footer-form{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
  color: #fff;
  outline: none;
  font-family: Inter, system-ui, sans-serif;
}

.footer-form input::placeholder{ color: rgba(255,255,255,.75); }

.check{
  display:flex;
  gap: 10px;
  align-items: center;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13.5px;
  opacity: .95;
}

.check input{ transform: translateY(1px); }

.footer-btn{
  padding: 12px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,.92);
  color: #1c1208;
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 900;
  transition: transform .15s ease;
}

.footer-btn:hover{ transform: translateY(-2px); }
.footer-btn:active{ transform: translateY(0) scale(.99); }

.footer-badge{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge span{
  font-family: Inter, system-ui, sans-serif;
  font-weight: 750;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.22);
}

/* Bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.22);
  padding: 14px 18px;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
  opacity: .92;
}

/* Responsive */
@media (max-width: 980px){
  .footer-wrap{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .footer-wrap{
    grid-template-columns: 1fr;
  }
}
/* ===== FOOTER PREMIUM (compact) ===== */
.site-footer{
  position: relative;
  padding: 34px 0 16px;          /* compact */
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,140,20,0.92), rgba(255,90,0,0.86));
}

/* fundal subtil cu blur */
.site-footer__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 15%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(0,0,0,0.15), transparent 55%);
  pointer-events:none;
}

.site-footer__wrap{
  position: relative;
  max-width: 1000px;             /* îngust & premium */
  margin: 0 auto;
  padding: 26px 22px 18px;       /* compact */
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr 1fr;
  gap: 18px;                     /* spațiu mic */
}

/* brand */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  color:#fff;
  font-size: 22px;
}
.footer-logo__ico{ font-size: 24px; }
.footer-desc{
  margin: 10px 0 14px;
  color: rgba(255,255,255,0.92);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  max-width: 320px;
}

/* CTA */
.footer-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.90);
  color: #111;
  text-decoration:none;
  font-family:"Poppins", sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.footer-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  background: #fff;
}
.footer-cta:active{ transform: translateY(0); }

/* social */
.footer-social{
  display:flex;
  gap:10px;
  margin-top: 12px;
}
.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration:none;
  transition: transform .18s ease, background .18s ease;
}
.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,0.26);
}

/* headings */
.footer-col h4{
  margin: 4px 0 10px;
  color:#fff;
  font-family:"Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
}

/* links */
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-links a{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-family:"Inter", sans-serif;
  font-size: 14px;
  transition: opacity .18s ease, transform .18s ease;
}
.footer-links a:hover{
  opacity: 1;
  transform: translateX(2px);
}

/* info box */
.footer-infoBox{
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 10px;
  display:grid;
  gap:8px;
}
.info-row{
  display:grid;
  grid-template-columns: 22px 70px 1fr;
  gap:10px;
  align-items:center;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,0.94);
  text-decoration:none;
  transition: background .18s ease, transform .18s ease;
}
.info-row:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.info-row.is-static:hover{
  background: transparent;
  transform: none;
}
.info-ico{ font-size: 16px; }
.info-label{
  font-family:"Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.info-value{
  font-family:"Inter", sans-serif;
  font-size: 13px;
  opacity: .95;
  text-align:right;
}

/* legal links */
.footer-legal-links{
  margin-top: 10px;
  display:flex;
  gap:8px;
  flex-wrap: wrap;
  align-items:center;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  font-family:"Inter", sans-serif;
}
.footer-legal-links a{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  opacity: .9;
}
.footer-legal-links a:hover{ opacity: 1; }

/* newsletter */
.footer-small{
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
  font-family:"Inter", sans-serif;
  font-size: 13px;
  line-height: 1.45;
}
.footer-form{
  display:grid;
  gap:10px;
}
.footer-form input[type="email"]{
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.16);
  color: #fff;
  padding: 0 14px;
  outline: none;
  font-family:"Inter", sans-serif;
}
.footer-form input::placeholder{ color: rgba(255,255,255,0.78); }

.footer-check{
  display:flex;
  gap:10px;
  align-items:center;
  font-family:"Inter", sans-serif;
  color: rgba(255,255,255,0.92);
  font-size: 12px;
}
.footer-check input{ transform: translateY(1px); }

.footer-form button{
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-weight: 800;
  font-family:"Poppins", sans-serif;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}
.footer-form button:hover{
  transform: translateY(-2px);
  background:#fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.footer-form button:active{ transform: translateY(0); }

.footer-tags{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag{
  font-family:"Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.94);
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 10px;
  border-radius: 999px;
}

/* bottom line (linia neagra / copyright) */
.site-footer__bottom{
  position: relative;
  max-width: 1000px;
  margin: 14px auto 0;
  padding-top: 12px;
  text-align:center;
  color: rgba(255,255,255,0.92);
  font-family:"Inter", sans-serif;
  font-size: 13px;
  border-top: 1px solid rgba(0,0,0,0.45); /* linia neagra subtila */
}

/* ===== MOBILE ===== */
@media (max-width: 920px){
  .site-footer__wrap{
    max-width: 92%;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px){
  .site-footer{
    padding: 26px 0 14px;
  }
  .site-footer__wrap{
    grid-template-columns: 1fr;
    padding: 22px 18px 16px;
    gap: 16px;
    text-align:center;
  }
  .footer-desc{ margin-left:auto; margin-right:auto; }
  .footer-social{ justify-content:center; }
  .info-row{ grid-template-columns: 22px 70px 1fr; }
  .info-value{ text-align:right; }
  .site-footer__bottom{
    max-width: 92%;
  }
}
/* ===== NAVBAR PREMIUM (logo centrat) ===== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(235,235,235,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* stânga | brand | dreapta */
  align-items: center;
  gap: 14px;
}

/* Left pills */
.nav-left{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  justify-content: flex-start;
}
.nav-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.10);
  color: #111;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease;
}
.nav-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.85);
}
.nav-ico{ font-size: 14px; }

/* Brand centered */
.nav-brand{
  justify-self: center;
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color:#111;
}

/* Premium logo mark (fără imagine, doar CSS) */
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(10px 10px at 30% 35%, rgba(255,255,255,0.55), transparent 60%),
    linear-gradient(135deg, rgba(255,140,20,1), rgba(255,70,0,1));
  box-shadow:
    0 14px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.35);
  position: relative;
}
.brand-mark::after{
  content:"🐾";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size: 16px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.brand-text{
  display:flex;
  gap: 6px;
  align-items: baseline;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand-title{ font-size: 18px; }
.brand-title--accent{
  background: linear-gradient(135deg, rgba(255,140,20,1), rgba(255,70,0,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Menu right */
.nav-menu{
  justify-self: end;
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-menu a{
  text-decoration:none;
  color:#111;
  font-family:"Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
  position: relative;
  padding: 6px 2px;
  transition: opacity .18s ease, transform .18s ease;
}
.nav-menu a:hover{
  opacity: 1;
  transform: translateY(-1px);
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:3px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(255,140,20,1), rgba(255,70,0,1));
  transition: width .22s ease;
}
.nav-menu a:hover::after{ width:100%; }

/* ===== MOBILE ===== */
@media (max-width: 900px){
  .nav-inner{
    grid-template-columns: 1fr auto; /* brand + meniu */
    grid-template-areas:
      "brand brand"
      "left menu";
    gap: 10px;
  }
  .nav-brand{ grid-area: brand; justify-self: center; }
  .nav-left{ grid-area: left; justify-content: center; }
  .nav-menu{ grid-area: menu; justify-self: center; flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 520px){
  .nav-pill{ font-size: 12px; padding: 7px 10px; }
  .brand-title{ font-size: 17px; }
  .brand-mark{ width: 32px; height: 32px; }
}
/* Scoate highlight-ul urât la apăsare (tap/click) */
.nav-menu a,
.nav-pill,
.nav-brand{
  -webkit-tap-highlight-color: transparent; /* mobile */
  outline: none;
}

/* Când ții click apăsat */
.nav-menu a:active{
  background: transparent;
  transform: translateY(0); /* să nu sară ciudat */
}

/* Focus (când navighezi cu tastatura) - ring premium */
.nav-menu a:focus-visible,
.nav-pill:focus-visible,
.nav-brand:focus-visible{
  outline: 3px solid rgba(255,140,20,0.45);
  outline-offset: 6px;
  border-radius: 12px;
}

/* Dacă ai vreun "active" cu background, îl neutralizăm */
.nav-menu a:focus,
.nav-menu a:active{
  box-shadow: none;
}
/* =========================
   RESET mic + tap highlight
========================= */
* { box-sizing: border-box; }

a, button {
  -webkit-tap-highlight-color: transparent; /* scoate “cadranul” pe mobil */
}

a { text-decoration: none; color: inherit; }

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

/* =========================
   FOCUS “curat”: fără outline urât
   dar cu ring frumos doar la tastatură
========================= */
:focus { outline: none; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35); /* ring discret */
  border-radius: 12px;
}

/* Dacă vrei să NU apară niciun ring deloc, comentează blocul de mai sus
   și folosește în schimb:
   :focus-visible { box-shadow:none; }
*/

/* =========================
   NAVBAR + MENIU
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

/* Stânga pills (telefon/locație) */
.nav-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  transition: transform .15s ease, background .15s ease;
  user-select: none;
}

.nav-pill:hover { background: rgba(0,0,0,0.06); }
.nav-pill:active { transform: scale(0.98); }

/* Brand */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 16px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a00, #ffb25a);
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title { font-weight: 700; }
.brand-title--accent { color: #ff7a00; }

/* MENIU dreapta */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;

  /* IMPORTANT: elimină orice “cadran”/fundal de tap/click */
  background: transparent;
  box-shadow: none;

  transition: background .15s ease, transform .15s ease, color .15s ease;
  user-select: none;
}

.nav-menu a:hover {
  background: rgba(0,0,0,0.05);
}

.nav-menu a:active {
  transform: scale(0.98);
}

/* Dacă ai o linie portocalie făcută cu ::after și vrei să dispară complet */
.nav-menu a::after {
  content: none !important;
}

/* “pagina curentă” (opțional): pune class="is-active" pe link-ul paginii */
.nav-menu a.is-active {
  background: rgba(255, 122, 0, 0.12);
  color: #c85f00;
}

/* =========================
   BUTOANE “perfecte”
   (poți refolosi .btn peste tot)
========================= */
.btn,
.price-btn,
.dog-signature__cta,
.footer-cta,
.site-footer .footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 16px;

  font-weight: 600;
  letter-spacing: 0.2px;

  background: linear-gradient(135deg, #ff7a00, #ffb25a);
  color: #1a1a1a;

  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  user-select: none;
}

.btn:hover,
.price-btn:hover,
.dog-signature__cta:hover,
.footer-cta:hover,
.site-footer .footer-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
}

.btn:active,
.price-btn:active,
.dog-signature__cta:active,
.footer-cta:active,
.site-footer .footer-form button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
}

/* Varianta “ghost” */
.price-btn--ghost {
  background: transparent !important;
  color: #ff7a00 !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 122, 0, 0.35);
}

.price-btn--ghost:hover {
  background: rgba(255, 122, 0, 0.08) !important;
  transform: translateY(-1px);
}

/* =========================
   INPUT-uri footer – să arate premium
========================= */
.footer-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  outline: none;
}

.footer-form input[type="email"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25);
  border-color: rgba(255, 122, 0, 0.45);
}

/* =========================
   Responsiv (minimal)
========================= */
@media (max-width: 900px) {
  .nav-inner { flex-wrap: wrap; }
  .nav-left { width: 100%; justify-content: center; }
  .nav-brand { margin: 0 auto; }
  .nav-menu { width: 100%; justify-content: center; flex-wrap: wrap; }
}
/* =========================
   NAVBAR hide on scroll
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  transition: transform 0.35s ease, opacity 0.25s ease;
  will-change: transform;
}

/* când e ascuns */
.navbar.nav--hidden {
  transform: translateY(-110%);
  opacity: 0;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform .35s ease, opacity .25s ease;
  will-change: transform;
}

.navbar.nav--hidden {
  transform: translateY(-110%);
  opacity: 0;
}
.form select,
.form input[type="number"]{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  font: inherit;
}
/* NAVBAR - global, la fel pe toate paginile */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* efect când dai scroll (dacă îl folosești) */
body.scrolled .navbar{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* hide on scroll (ai deja) */
.navbar{
  transition: transform .35s ease, opacity .25s ease;
  will-change: transform;
}
.navbar.nav--hidden{
  transform: translateY(-110%);
  opacity: 0;
}
html, body{
  margin: 0;
  padding: 0;
}
.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
/* =========================
   BACKGROUND – Disponibilitate
========================= */
body.disponibilitate {
  min-height: 100vh;

  background-image:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url("img/bckd-vd.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* cardul principal să iasă frumos din fundal */
body.disponibilitate .avail-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* text mai lizibil pe fundal */
body.disponibilitate h1,
body.disponibilitate p {
  color: #fff;
}

/* navbar rămâne identic cu restul site-ului */
body.disponibilitate .navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
}
/* =========================
   RESET DE SIGURANȚĂ
========================= */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

/* =========================
   BACKGROUND – VERIFICĂ DISPONIBILITATE
========================= */
body.disponibilitate {
  min-height: 100vh;

  /* imaginea TA */
  background-image: url("img/bckg-vd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* overlay pentru lizibilitate */
body.disponibilitate::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* tot conținutul să fie peste overlay */
body.disponibilitate > * {
  position: relative;
  z-index: 1;
}

/* =========================
   CARD PRINCIPAL (glass)
========================= */
body.disponibilitate .avail-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* text alb pe fundal */
body.disponibilitate h1,
body.disponibilitate p,
body.disponibilitate label,
body.disponibilitate .hint {
  color: #fff;
}

/* navbar identic cu restul site-ului */
body.disponibilitate .navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
/* =========================
   LOGO ROTUND ÎN NAVBAR
========================= */
.brand-logo-wrap{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000; /* fundal negru pt logo-ul tău */
  box-shadow:
    0 10px 28px rgba(0,0,0,0.25),
    0 0 0 3px rgba(255,152,0,0.35); /* contur premium */
}

.brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* hover subtil */
.nav-brand:hover .brand-logo-wrap{
  transform: translateY(-1px);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.35),
    0 0 0 4px rgba(255,152,0,0.45);
}

/* mobil */
@media (max-width: 520px){
  .brand-logo-wrap{
    width: 44px;
    height: 44px;
  }
}
/* =========================================================
   TARIFE SEZON 2026 – CADRAN UNIC (calendar / timeline)
========================================================= */
.season-tariffs{
  padding: 22px 0 70px;
}

.season-tariffs__wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

.season-tariffs__head{
  margin: 0 0 14px;
  padding: 22px 22px;
  border-radius: 22px;

  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}

.season-tariffs__head::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,152,0,0.20), transparent 55%),
    radial-gradient(circle at 80% 25%, rgba(255,255,255,0.10), transparent 58%),
    radial-gradient(circle at 55% 120%, rgba(255,106,0,0.18), transparent 55%);
  filter: blur(14px);
  opacity: .95;
  pointer-events: none;
}

.season-tariffs__head > *{ position: relative; z-index: 1; }

.season-tariffs__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  width: fit-content;
  margin-bottom: 10px;
}

.kicker-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  box-shadow: 0 0 0 5px rgba(255,152,0,0.14);
}

.season-tariffs__head h2{
  margin: 0 0 6px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  letter-spacing: .2px;
}

.season-tariffs__sub{
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  max-width: 90ch;
}

/* grid */
.season-tariffs__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

/* card */
.season-card{
  border-radius: 22px;
  padding: 16px 16px;

  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
  position: relative;
  overflow: hidden;

  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.season-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,152,0,0.30);
  box-shadow: 0 22px 58px rgba(0,0,0,0.42);
}

/* top row */
.season-card__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.season-badge{
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.season-chip{
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  white-space: nowrap;
}

/* timeline list */
.season-lines{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.season-lines li{
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;

  padding: 10px 12px;
  border-radius: 16px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
}

.line-dot{
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9800, #ff6a00);
  box-shadow: 0 0 0 5px rgba(255,152,0,0.12);
}

.line-text strong{
  font-family: "Poppins", sans-serif;
  font-weight: 900;
}

/* peak variant */
.season-card--peak{
  background:
    linear-gradient(180deg, rgba(255,152,0,0.12), rgba(0,0,0,0.28));
  border-color: rgba(255,152,0,0.22);
}
.season-badge--peak{
  background: linear-gradient(135deg, rgba(255,152,0,0.28), rgba(255,106,0,0.18));
  border-color: rgba(255,152,0,0.32);
}

/* standard variant */
.season-badge--standard{
  background: rgba(255,255,255,0.10);
}

.season-note{
  margin: 0;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
}

.season-foot{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(255,255,255,0.90);
  font-size: 13px;
}
.season-foot .star{
  color: rgba(255,152,0,0.95);
  font-weight: 900;
}

/* responsive */
@media (max-width: 980px){
  .season-tariffs__grid{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ACCORDION – SLIDE DOWN TARIFE
=============================== */

.season-card.is-collapsible{
  padding: 0;
}

/* butonul pe care dai click */
.season-toggle{
  width: 100%;
  text-align: left;
  padding: 16px;
  border-radius: 22px;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 12px;
  position: relative;
}

/* sageata */
.season-chevron{
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.3s ease;
}

/* panel ascuns */
.season-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* continut panel */
.season-panel__inner{
  padding: 0 16px 16px;
}

/* rand pret */
.season-price-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.season-price-row b{
  font-weight: 900;
  white-space: nowrap;
}

/* stare deschisa */
.season-card.is-open .season-chevron{
  transform: rotate(180deg);
}

.season-card.is-open{
  border-color: rgba(255,152,0,0.35);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}
/* === TARIFE SEZON – TEXT MAI VIZIBIL === */
.season-card,
.season-lines li,
.season-price-row,
.season-panel__hint,
.season-panel__note,
.season-note,
.season-foot{
  color: rgba(255,255,255,0.96);
}
.season-badge,
.season-badge--peak,
.season-badge--standard{
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.season-chip{
  color: #fff;
  font-weight: 900;
}
.season-lines li{
  background: rgba(0,0,0,0.38); /* mai închis, textul iese mai tare */
  border: 1px solid rgba(255,255,255,0.16);
}

.line-text{
  color: rgba(255,255,255,0.97);
}

.line-text strong{
  color: #fff;
}
.season-price-row{
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.18);
}

.season-price-row span{
  color: rgba(255,255,255,0.96);
}

.season-price-row b{
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.season-price-row b{
  background: linear-gradient(135deg, #ffb347, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* ===== FIX: muta sageata, sa nu mai intre peste text ===== */
.season-toggle{
  padding-right: 16px; /* nu mai avem nevoie de spatiu extra pt absolut */
}

/* anulam pozitionarea absoluta */
.season-chevron{
  position: static !important;
  width: 34px;
  height: 34px;
  margin-left: auto;      /* o impinge in dreapta */
  margin-top: 8px;        /* o coboara sub continut */
  transform: none;        /* rotirea o facem separat mai jos */
}

/* cand e deschis, rotim doar iconita */
.season-card.is-open .season-chevron{
  transform: rotate(180deg);
}
/* =========================
   SERVICII – ACCORDION SLIDE
========================= */

/* containerul cu butoane */
.service-accordion{
  display: grid;
  gap: 14px;
}

/* fiecare item (card) */
.service-item{
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-item:hover{
  transform: translateY(-3px);
  border-color: rgba(255,152,0,0.30);
  box-shadow: 0 22px 58px rgba(0,0,0,0.42);
}

/* butonul (bara de sus) */
.service-btn{
  width: 100%;
  text-align: left;
  padding: 16px 16px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.96);

  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.02rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* sageata (adaugata din CSS, nu trebuie in HTML) */
.service-btn::after{
  content: "⌄";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.95);

  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
  flex: 0 0 auto;
}

/* la deschis - rotim sageata */
.service-item.open .service-btn::after{
  transform: rotate(180deg);
  background: rgba(255,152,0,0.14);
  border-color: rgba(255,152,0,0.22);
}

/* panel slide */
.service-panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

/* continutul din panel */
.service-panel__inner{
  padding: 0 16px 16px;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;

  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* un mic accent cand e deschis */
.service-item.open{
  border-color: rgba(255,152,0,0.34);
}
/* Hint mic lângă buton (rezervare) – vizibil pe fundal dark */
.reserve-hint{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 14px;
  line-height: 1.35;

  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.75);

  padding: 10px 12px;
  border-radius: 999px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* =========================
   LOGO GLOBAL – NAVBAR
========================= */
.nav-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo-wrap{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;

  background: #000;
  border: 2px solid rgba(255,168,0,0.6);
  box-shadow:
    0 8px 22px rgba(0,0,0,0.35);
}

.brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* mobil */
@media (max-width: 520px){
  .brand-logo-wrap{
    width: 38px;
    height: 38px;
  }
}
/* ======================================
   MOBILE FIX PACK (global)
====================================== */

/* 1) Siguranță: imagini + layout */
img, video { max-width: 100%; height: auto; display: block; }
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }

/* 2) Container: să nu fie prea lat pe mobil */
.container,
.nav-inner,
.dog-pricing__wrap,
.season-tariffs__wrap,
.dog-signature__wrap{
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

/* 3) Touch targets mai mari */
a, button, input, select, textarea{
  touch-action: manipulation;
}
button, .btn, .price-btn{
  min-height: 44px; /* standard mobile */
}

/* 4) Form input zoom fix (iOS) */
input, select, textarea{
  font-size: 16px; /* previne zoom automatic pe iPhone */
}

/* ======================================
   NAVBAR – MOBILE
====================================== */
@media (max-width: 900px){
  body{ padding-top: 96px; } /* navbar sticky */

  .nav-inner{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 12px;
    justify-items: center;
  }

  .nav-left{
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-menu{
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-menu a{
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 14px;
  }
}

/* ======================================
   HERO / HEADERS – MOBILE
====================================== */
@media (max-width: 720px){
  .hero.hero-top{
    min-height: 52vh;
    padding-top: 110px;
    padding-bottom: 22px;
  }

  .hero-card{
    width: min(560px, calc(100% - 22px));
    padding: 18px 16px;
    border-radius: 18px;
  }

  .hero-card h1{ font-size: 1.7rem; }
  .hero-card p{ font-size: 1rem; }

  .btn{ width: 100%; justify-content: center; }
}

/* ======================================
   TARIFE (dog-pricing) – MOBILE
====================================== */
@media (max-width: 980px){
  .dog-pricing__grid{ grid-template-columns: 1fr !important; }
}

@media (max-width: 720px){
  .dog-pricing{ padding: 44px 0 58px; }
  .price-box{ padding: 16px 14px; border-radius: 18px; }
  .price-row{ gap: 10px; }
  .price-btn{ width: 100%; }
}

/* ======================================
   TARIFE SEZON (accordion) – MOBILE
====================================== */
@media (max-width: 980px){
  .season-tariffs__grid{ grid-template-columns: 1fr !important; }
}
@media (max-width: 520px){
  .season-toggle{ padding: 14px 14px; }
  .season-lines li{ padding: 10px; }
}

/* ======================================
   SERVICII – MOBILE
====================================== */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr !important; }
}

@media (max-width: 720px){
  .services-section{
    padding: 26px 16px;
    border-radius: 22px;
  }

  .service-btn{
    font-size: 1rem;
    padding: 14px 14px;
  }

  .service-panel__inner{
    padding: 0 14px 14px;
    font-size: 0.95rem;
  }
}

/* ======================================
   GALERIE – MOBILE
====================================== */
@media (max-width: 720px){
  .gallery{
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .gallery img{
    border-radius: 18px;
  }
}

/* ======================================
   REZERVARE (form) – MOBILE
====================================== */
@media (max-width: 720px){
  .form{
    width: calc(100% - 22px);
    padding: 16px 14px;
    border-radius: 18px;
  }

  .form input,
  .form select,
  .form textarea,
  .form button{
    width: 100%;
  }
}
/* ===== FIX NAVBAR MOBILE: lipit sus pe toate paginile ===== */
html, body {
  margin: 0;
  padding: 0;
}

:root{
  --nav-h: 72px; /* fallback, va fi suprascris din JS */
}

/* fortam navbar-ul sa fie FIXED chiar daca exista media queries care il schimba */
.navbar{
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  top: 0 !important;
  z-index: 9999 !important;
}

/* iPhone / notch safe-area */
@supports (top: max(0px)) {
  .navbar{
    top: max(env(safe-area-inset-top), 0px) !important;
  }
  body{
    padding-top: calc(var(--nav-h) + max(env(safe-area-inset-top), 0px));
  }
}

/* fallback (fara safe-area) */
body{
  padding-top: var(--nav-h);
}
/* ===== FIX: continutul sa nu intre sub navbar (mai ales pe mobil) ===== */

/* inaltimea reala vine din JS in --nav-h; fallback daca JS nu a rulat inca */
:root { --nav-h: 72px; }

/* aplica offset DOAR paginilor cu navbar fixed */
body{
  padding-top: var(--nav-h);
}

/* daca ai safe-area (iPhone notch) */
@supports (padding: max(0px)) {
  body{
    padding-top: calc(var(--nav-h) + max(env(safe-area-inset-top), 0px));
  }
}

/* IMPORTANT: pe pagina Servicii, primul bloc are probabil un padding-top/margin-top mic.
   Forteaza un spatiu extra doar acolo, ca sa nu se suprapuna titlul */
body.servicii main,
body.servicii .page,
body.servicii .content,
body.servicii .services,
body.servicii .services-hero,
body.servicii .services-wrap,
body.servicii .service-section{
  padding-top: 12px;
}

/* daca "Serviciile noastre" e chiar primul heading sub navbar, asigura-te ca are spatiu */
body.servicii h1,
body.servicii h2:first-of-type{
  margin-top: 0;
  padding-top: 8px;
}

/* asigura ca navbarul nu ia click/scroll peste continut doar vizual */
.navbar{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}
/* ===== SPATIU FRUMOS SUB NAVBAR (desktop + mobil) ===== */
:root{
  --nav-h: 72px;      /* setat din JS */
  --nav-gap: 28px;    /* spatiu vizibil sub navbar */
}

/* daca ai fixed navbar, asta face continutul sa nu fie "lipit" */
body{
  padding-top: calc(var(--nav-h) + var(--nav-gap));
}

/* iPhone / notch safe-area */
@supports (padding: max(0px)) {
  body{
    padding-top: calc(var(--nav-h) + var(--nav-gap) + max(env(safe-area-inset-top), 0px));
  }
}

/* pe mobil, un pic mai mult aer */
@media (max-width: 640px){
  :root{ --nav-gap: 34px; }
}

/* optional: daca primul bloc are deja padding mare, poti reduce doar acolo
   (lasa asta doar daca ti se pare prea mult spatiu) */
/*
.hero-top, .dog-signature, .services-hero, .gallery-hero, .rezervare-hero, .page-hero{
  padding-top: 0 !important;
  margin-top: 0 !important;
}
*/
/* ====== GALERIE: doua cadrane frumoase ====== */
.gallery-split{
  padding: 24px 0 60px;
}

.gallery-split__wrap{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.gallery-card{
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.gallery-card__title{
  margin: 4px 0 14px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.gallery-card__placeholder{
  height: 340px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
}

.in-lucru{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none; /* exact "In Lucru" */
  font-size: 22px;
}

/* responsive */
@media (max-width: 900px){
  .gallery-split__wrap{
    grid-template-columns: 1fr;
  }
  .gallery-card__placeholder{
    height: 280px;
  }
}
/* ===== GALERIE: inlocuire cadran mare cu 2 cadrane mici ===== */

.gallery-replace{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: 100%;
}

/* fiecare cadran */
.gallery-mini-card{
  height: 260px;
  border-radius: 22px;
  background: rgba(0,0,0,0.45);
  border: 1px dashed rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* text In Lucru */
.gallery-mini-text{
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

/* mobil */
@media (max-width: 900px){
  .gallery-replace{
    grid-template-columns: 1fr;
  }
  .gallery-mini-card{
    height: 220px;
  }
}
/* ===== TITLU PENTRU CADRANE GALERIE ===== */

.gallery-mini-card{
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 14px;
  padding: 22px;
}

/* titlul de sus */
.gallery-mini-title{
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  opacity: 0.9;
}

/* text In Lucru (ramane la fel) */
.gallery-mini-text{
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
/* GRID TARIFE */
.dog-pricing__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

/* SERVICII OPȚIONALE – CENTRAT */
.price-box--center{
  grid-column:1 / -1;
  max-width:520px;
  margin:0 auto;
}

/* responsive */
@media(max-width:900px){
  .dog-pricing__grid{
    grid-template-columns:1fr;
  }
  .price-box--center{
    max-width:100%;
  }
}
