body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #f7fbff;
  font-family: 'Inter', sans-serif;
  color: #0a1b32;
}

html {
  overflow-x: hidden;
}

.pagina-serviciu {
  padding: 150px 48px 90px;
  background:
    radial-gradient(circle at top left, rgba(31, 75, 165, 0.12), transparent 34%),
    linear-gradient(to bottom, #f7fbff, #e8f0ff);
  font-size: 1.05rem;
  line-height: 1.8;
}

.header-blur-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 46px 34px;
  margin: 0 auto 48px;
  box-shadow: 0 18px 55px rgba(31, 75, 165, 0.12);
  text-align: center;
  max-width: 1200px;
  animation: fadeInUp 0.9s ease-out forwards;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #1f4ba5, #3b82f6);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.6px;
  box-shadow: 0 8px 20px rgba(31, 75, 165, 0.25);
}

.header-blur-box h1 {
  font-size: 2.6rem;
  margin: 10px 0 18px;
  color: #1f4ba5;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.header-blur-box h3 {
  font-weight: 500;
  color: #3a4b6b;
  font-size: 1.2rem;
  margin-top: 10px;
}

.video-urologie {
  max-width: 1120px;
  margin: 0 auto 64px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(10, 27, 50, 0.2);
  background: #0a1b32;
  border: 6px solid rgba(255, 255, 255, 0.75);
}

.video-urologie video {
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: cover;
}

.continut-serviciu {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
}



.continut-serviciu h3 {
  font-size: 1.6rem;
  color: #1f4ba5;
  margin-top: 58px;
  margin-bottom: 20px;
  border-left: 5px solid #1f4ba5;
  padding: 10px 16px;
  background: #eef4ff;
  border-radius: 8px;
}

.continut-serviciu p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a2e42;
}

.continut-serviciu strong {
  color: #1f4ba5;
  font-weight: 700;
}

.continut-serviciu ul {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 18px;
  padding: 0;
  margin: 30px 0;
}

.continut-serviciu ul li {
  list-style: none;
  position: relative;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);

  border-radius: 18px;

  padding: 18px 18px 18px 56px;

  border: 1px solid rgba(31,75,165,0.08);

  box-shadow:
    0 10px 30px rgba(31,75,165,0.08),
    0 1px 0 rgba(255,255,255,0.8) inset;

  transition: all .35s ease;
}

.continut-serviciu ul li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #1f4ba5,
    #3b82f6
  );

  color: white;
  font-size: .8rem;
  font-weight: 700;
}

.continut-serviciu ul li:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(31,75,165,0.15);

  border-color: rgba(31,75,165,0.2);
}



.cta-urologie {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #1f4ba5, #3b82f6);
  color: white;
  padding: 38px 30px;
  border-radius: 26px;
  margin: 68px 0 20px;
  text-align: center;
  box-shadow: 0 20px 52px rgba(31, 75, 165, 0.25);
}

.cta-urologie h3 {
  background: transparent;
  border: none;
  color: white;
  margin: 0 0 12px;
  padding: 0;
  font-size: 1.8rem;
}

.cta-urologie p {
  color: #eef4ff;
  margin-bottom: 22px;
}

.cta-urologie a {
  display: inline-block;
  background: white;
  color: #1f4ba5;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-urologie a:hover {
  background: #e8f0ff;
  transform: scale(1.06);
}

.footer {
  background-color: #0a1b32;
  color: #e0e0e0;
  padding: 60px 20px 30px;
  text-align: center;
}

.footer a {
  color: #aad4ff;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer .footer-bottom {
  font-size: 0.85rem;
  margin-top: 30px;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  background-color: #1f4ba5;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.4s ease;
}

#btn-back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .continut-serviciu ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pagina-serviciu {
    padding: 120px 16px 60px;
    font-size: 0.98rem;
  }

  .header-blur-box {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .header-blur-box h1 {
    font-size: 1.8rem;
  }

  .header-blur-box h3 {
    font-size: 1rem;
  }

  .continut-serviciu {
    padding: 0;
  }

  .continut-serviciu h3 {
    font-size: 1.35rem;
  }

 

  

  .imagine-centru {
    margin: 34px 0;
  }

  .cta-urologie {
    padding: 30px 18px;
  }
}

.doctor-card-premium{
    display:flex;
    gap:40px;
    align-items:center;

    background:white;

    border-radius:24px;

    padding:30px;

    margin:50px 0;

    box-shadow:
      0 20px 60px rgba(0,0,0,.08);
}

.doctor-card-premium img{
    width:280px;
    border-radius:20px;
}

.doctor-premium-info span{
    color:#1f4ba5;
    font-weight:700;
    letter-spacing:2px;
    font-size:.8rem;
}

.doctor-premium-info h2{
    margin:10px 0;
    color:#0a1b32;
    font-size:2rem;
}

.doctor-premium-info p{
    margin:0;
}

@media(max-width:768px){

.doctor-card-premium{
    flex-direction:column;
    text-align:center;
}

.doctor-card-premium img{
    width:100%;
    max-width:300px;
}

}

.video-section{
    max-width:1200px;
    margin:0 auto 80px;
}

.video-header{
    text-align:center;
    margin-bottom:35px;
}

.video-badge{
    display:inline-block;
    background:linear-gradient(
      135deg,
      #1f4ba5,
      #0ea5e9
    );
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(31,75,165,.25);
}

.video-header h2{
    font-size:2.6rem;
    color:#0a1b32;
    margin:0 0 15px;
}

.video-header p{
    max-width:700px;
    margin:auto;
    color:#51607d;
    font-size:1.05rem;
    line-height:1.8;
}

.video-urologie{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:#000;
    box-shadow:
      0 30px 80px rgba(10,27,50,.25);
    border:4px solid rgba(255,255,255,.8);
}

.video-urologie::before{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,.08),
        transparent
      );
    pointer-events:none;
    z-index:2;
}

.video-urologie video{
    width:100%;
    display:block;
}

@media(max-width:768px){

.video-header h2{
    font-size:1.8rem;
}

.video-header p{
    font-size:.95rem;
}

.video-urologie{
    border-radius:18px;
}

}


.intro-card {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,249,255,0.92));

  border-radius: 30px;
  padding: 44px 48px;

  box-shadow:
    0 24px 70px rgba(31, 75, 165, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);

  border: 1px solid rgba(31, 75, 165, 0.08);

  margin-bottom: 52px;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 9px;

  background: linear-gradient(
    to bottom,
    #1f4ba5,
    #0ea5e9
  );
}

.intro-card::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;

  width: 230px;
  height: 230px;

  background: radial-gradient(circle, rgba(14,165,233,0.22), transparent 68%);
  pointer-events: none;
}

.intro-card p {
  position: relative;
  z-index: 2;

  font-size: 1.12rem;
  line-height: 1.9;
  color: #0a1b32;
  margin-bottom: 28px;
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.intro-card strong {
  color: #1f4ba5;
  font-weight: 800;
}

@media (max-width: 768px) {
  .intro-card {
    border-radius: 22px;
    padding: 30px 26px 30px 30px;
    margin-bottom: 40px;
  }

  .intro-card::before {
    width: 6px;
  }

  .intro-card p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.cabinet-info{
    margin:20px 0 28px;

    font-size:1.05rem;
    line-height:1.8;

    color:#eef4ff;

    font-weight:500;
}

.locatie-premium-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,247,255,0.94));

  border: 1px solid rgba(31,75,165,0.10);
  border-radius: 28px;

  padding: 34px 38px;
  margin: 26px 0 64px;

  box-shadow:
    0 24px 70px rgba(31,75,165,0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.locatie-premium-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(to bottom, #1f4ba5, #0ea5e9);
}

.locatie-premium-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;

  width: 190px;
  height: 190px;

  background: radial-gradient(circle, rgba(14,165,233,0.20), transparent 68%);
  pointer-events: none;
}

.locatie-icon {
  width: 66px;
  height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background: linear-gradient(135deg, #1f4ba5, #0ea5e9);
  color: white;

  font-size: 1.8rem;

  box-shadow: 0 14px 30px rgba(31,75,165,0.25);
}

.locatie-content {
  position: relative;
  z-index: 2;
}

.locatie-content span {
  color: #1f4ba5;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.locatie-content h4 {
  margin: 6px 0 10px;
  color: #0a1b32;
  font-size: 1.55rem;
}

.locatie-content p {
  margin: 0;
  color: #42516d;
  line-height: 1.7;
}

.locatie-button {
  position: relative;
  z-index: 2;

  display: inline-block;

  background: #1f4ba5;
  color: white !important;

  padding: 13px 24px;
  border-radius: 999px;

  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(31,75,165,0.22);

  transition: all .3s ease;
}

.locatie-button:hover {
  background: #14397c;
  transform: translateY(-3px);
}

@media(max-width: 768px) {
  .locatie-premium-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 30px 22px;
  }

  .locatie-premium-card::before {
    width: 100%;
    height: 6px;
    inset: 0 0 auto 0;
  }

  .locatie-content h4 {
    font-size: 1.35rem;
  }
}