* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #182426;
  background: #f6f9f9;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 70px;
  border-bottom: 1px solid #e6ecec;
  box-shadow: 0 3px 18px rgba(0,0,0,.05);
  z-index: 1000;
}

.menu-button {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 800;
  color: #182426;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-button::after {
  content: "MENIU";
  font-size: 15px;
  letter-spacing: 1px;
}

.call-button {
  position: absolute;
  right: 230px;
  top: 22px;
  background: #5f9ea0;
  color: white;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

/* MENU */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  background: rgba(24, 36, 38, 0.35);
}

.fullscreen-menu.open {
  display: block;
}

.fullscreen-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(600px, 92vw);
  height: 100%;
  padding: 110px 44px 44px;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f8 45%, #d9eeee 100%);
  box-shadow: -25px 0 60px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fullscreen-menu-inner a {
  color: #182426;
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  padding: 18px 0;
  border-bottom: 1px solid rgba(95, 158, 160, 0.25);
  transition: 0.25s;
}

.fullscreen-menu-inner a:hover {
  color: #5f9ea0;
  padding-left: 14px;
}

.close-menu {
  position: absolute;
  top: 26px;
  right: 34px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #5f9ea0;
  color: white;
  font-size: 34px;
  cursor: pointer;
}

/* HERO */
.hero {
  margin-top: 92px;
  height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-only-image {
  height: calc(100vh - 92px);
  align-items: flex-end;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.scroll-hint {
  position: relative;
  z-index: 3;
  margin: 0 auto 34px;
  color: white;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  opacity: 0.9;
}

.scroll-hint span {
  display: block;
  font-size: 28px;
  margin-top: 8px;
  animation: bounceArrow 1.5s infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* HOME INTRO */
.home-intro {
  max-width: 1100px;
  margin: auto;
  padding: 120px 7%;
  text-align: left;
}

.home-intro h1 {
  text-align: center;
  font-size: clamp(60px, 10vw, 110px);
  line-height: 1;
  margin-bottom: 45px;
  color: #1b1b1b;
}

.home-intro .eyebrow {
  text-align: left;
}

.intro-text {
  max-width: 930px;
  margin: auto;
  text-align: left;
  font-size: 21px;
  line-height: 1.9;
  color: #566163;
}

.home-intro-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* GENERAL */
.eyebrow {
  color: #5f9ea0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.section {
  max-width: 1280px;
  margin: auto;
  padding: 90px 6%;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 38px;
}

.gray {
  max-width: none;
  background: #f6f9f9;
}

.page-top {
  padding-top: 92px;
}

/* BUTTONS */
.button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #5f9ea0, #7fc7c7);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  border-radius: 999px;
  transition: 0.3s;
  box-shadow: 0 12px 30px rgba(95, 158, 160, 0.35);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(95, 158, 160, 0.45);
  background: linear-gradient(135deg, #4f8d90, #6fb8ba);
}

.secondary-button {
  background: white;
  color: #5f9ea0;
  border: 2px solid #5f9ea0;
  box-shadow: none;
}

.secondary-button:hover {
  background: #eef8f8;
}

.big-call-button {
  display: inline-block;
  margin-top: 24px;
  background: #5f9ea0;
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

/* MEDICI */
.grid {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.simple-doctor {
  background: white;
  border-radius: 22px;
  padding: 24px 24px 30px;
  text-decoration: none;
  color: #182426;
  box-shadow: 0 18px 45px rgba(24, 36, 38, 0.08);
  border: 1px solid rgba(95, 158, 160, 0.08);
  transition: 0.25s ease;
  height: 100%;
}

.simple-doctor:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(24, 36, 38, 0.14);
}

.simple-doctor .doctor-photo {
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  background: #eef8f8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-doctor .doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.simple-doctor h3 {
  font-size: 24px;
  font-weight: 900;
  min-height: 58px;
  margin-bottom: 8px;
  padding: 0 6px;
  text-align: left;
}

.simple-doctor p {
  display: block;
  min-height: 54px;
  color: #5f9ea0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 6px;
  text-align: left;
}

.simple-doctor p span {
  display: block;
  color: #6b7c80;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* SEARCH */
.doctor-search {
  max-width: 760px;
  margin: 0 auto 46px;
}

.doctor-search input {
  width: 100%;
  padding: 20px 26px;
  border-radius: 999px;
  border: 1px solid rgba(95, 158, 160, 0.35);
  background: white;
  font-size: 17px;
  outline: none;
  box-shadow: 0 12px 30px rgba(24, 36, 38, 0.08);
}

.doctor-search input:focus {
  border-color: #5f9ea0;
  box-shadow: 0 18px 40px rgba(95, 158, 160, 0.18);
}

/* PAGINA MEDIC */
.doctor-page {
  padding-top: 92px;
  background: #ffffff;
}

.doctor-hero {
  max-width: 1280px;
  margin: auto;
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

.doctor-image img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 28px;
  background: #f6f9f9;
  box-shadow: 0 24px 60px rgba(24, 36, 38, 0.14);
}

.doctor-info h1 {
  font-size: 56px;
  margin-bottom: 14px;
  color: #182426;
}

.doctor-info h2 {
  font-size: 24px;
  color: #5f9ea0;
  margin-bottom: 28px;
}

.doctor-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #536163;
  margin-bottom: 30px;
}

/* TARIFE */
.price-list {
  max-width: 850px;
  border: 1px solid #e3e8e8;
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid #e3e8e8;
  font-size: 18px;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row strong {
  color: #5f9ea0;
  white-space: nowrap;
}

/* SPECIALIZARI */
.specialty-list {
  max-width: 980px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
}

.specialty-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  color: #182426;
  text-decoration: none;
  padding: 24px 30px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: 800;
  border: 1px solid rgba(95, 158, 160, 0.18);
  box-shadow: 0 12px 30px rgba(24, 36, 38, 0.06);
  transition: 0.25s;
}

.specialty-list a::after {
  content: "→";
  color: #5f9ea0;
  font-size: 26px;
}

.specialty-list a:hover {
  transform: translateY(-4px);
  color: #5f9ea0;
  box-shadow: 0 22px 45px rgba(24, 36, 38, 0.12);
}

/* PAGINA SPECIALIZARE */
.specialty-hero {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #eef8f8 45%, #d9eeee 100%);
  padding: 90px 0;
}

.specialty-hero-content {
  max-width: 1280px;
  margin: auto;
  padding: 0 6%;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: #536163;
  font-size: 15px;
  font-weight: 700;
}

.breadcrumb a {
  color: #5f9ea0;
  text-decoration: none;
}

.specialty-actions {
  max-width: 1280px;
  margin: auto;
  padding: 50px 6% 100px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* CONTACT */
.contact-home,
.contact {
  max-width: 1280px;
  margin: auto;
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-home h2,
.contact h2 {
  font-size: 44px;
  margin-bottom: 24px;
}

.contact-home p,
.contact p {
  font-size: 18px;
  margin-bottom: 14px;
}

iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 18px;
}

/* DESPRE */
.about-text {
  max-width: 950px;
  font-size: 20px;
  line-height: 1.8;
  color: #536163;
  margin-bottom: 22px;
}

.info-table {
  max-width: 1100px;
  border: 1px solid #e3e8e8;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 45px rgba(24, 36, 38, 0.08);
}

.info-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 26px 30px;
  border-bottom: 1px solid #e3e8e8;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span {
  font-weight: 900;
  color: #5f9ea0;
  font-size: 18px;
}

.info-row strong {
  font-weight: 600;
  color: #536163;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #eef3f3;
  text-align: center;
  padding: 32px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .call-button {
    display: none;
  }

  .header {
    padding: 0 25px;
  }

  .grid,
  .contact-home,
  .contact,
  .doctor-hero,
  .info-row {
    grid-template-columns: 1fr;
  }

  .simple-doctor .doctor-photo {
    height: 420px;
  }

  .doctor-info h1 {
    font-size: 40px;
  }

  .home-intro {
    padding: 90px 6%;
  }
}.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
    text-decoration: none;
}

.logo-black,
.logo-black:link,
.logo-black:visited {
    color: #182426 !important;
}

.logo-blue,
.logo-blue:link,
.logo-blue:visited {
    color: #5f9ea0 !important;
}

/* LOGO EXPLOMED */
.header .logo,
.header .logo:link,
.header .logo:visited,
.header .logo:hover,
.header .logo:active {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: inherit !important;
}

.header .logo .logo-black {
  color: #182426 !important;
}

.header .logo .logo-blue {
  color: #5f9ea0 !important;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(24, 36, 38, 0.10);
  transition: 0.25s;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(24, 36, 38, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 82vw;
  max-height: 84vh;
  border-radius: 16px;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.16);
  color: white;
  cursor: pointer;
}

.lightbox-close {
  top: 28px;
  right: 36px;
  font-size: 46px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  font-size: 70px;
  width: 70px;
  height: 90px;
  border-radius: 18px;
}

.lightbox-prev {
  left: 34px;
}

.lightbox-next {
  right: 34px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width:1700px;
    margin:auto;
}

.gallery-grid img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 16px 40px rgba(24, 36, 38, 0.12);
}

.gallery-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(24, 36, 38, 0.18);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 300px;
  }
}
/* CONTACT */

/* CONTACT */

.contact-page {
  max-width: 1280px;
  margin: auto;
  padding: 90px 6%;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 70px;
  align-items: stretch;
}

.contact-info h2 {
  font-size: 48px;
  margin-bottom: 35px;
}

.contact-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 14px 35px rgba(24,36,38,.08);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #5f9ea0;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #536163;
}

.contact-card a {
  color: #536163;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: #5f9ea0;
}

.contact-buttons {
  margin-top: 35px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-map {
  display: flex;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(24,36,38,.12);
}

.contact-photo {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 100px;
  padding: 0 6%;
}

.contact-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

.contact-photo-overlay{
    position:absolute;

    left:100px;
    right:100px;
    bottom:0px;

    padding:30px 40px;

    background:rgba(24,36,38,.55);
    backdrop-filter:blur(8px);

    border-radius:20px;
}
.contact-photo-overlay h2 {
  color: white;
  font-size: 38px;
  font-weight: 700;
}
.facebook-link{
    color:#182426;
    text-decoration:none;
    font-weight:400;   /* sau normal */
    transition:.2s;
}

.facebook-link:hover{
    color:#5f9ea0;
    text-decoration:underline;
}
@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map iframe {
    min-height: 420px;
  }

  .contact-photo img {
    height: 320px;
  }

  .contact-photo-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:35px 50px;

    background:rgba(24,36,38,.55);
    backdrop-filter:blur(8px);

    border-radius:0 0 26px 26px;
}

  .contact-photo-overlay h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero-only-image {
    height: calc(100vh - 92px);
  }

  .hero-only-image .slide {
    background-size: cover;
    background-position: center center;
  }
}/* FIX HOMEPAGE PE TELEFON */

@media (max-width: 768px) {
  .header {
    height: 76px;
    padding: 0 18px;
  }

  .logo {
    font-size: 28px !important;
  }

  .call-button {
    display: none;
  }

  .menu-button {
    font-size: 30px;
    gap: 6px;
  }

  .menu-button::after {
    font-size: 12px;
  }

  .hero {
    margin-top: 76px;
  }

  .hero-only-image {
    height: calc(100vh - 76px);
  }

  .hero-only-image .slide {
    background-size: cover;
    background-position: center center;
  }

  .scroll-hint {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .home-intro {
    padding: 70px 22px;
  }

  .home-title,
  .home-intro h1 {
    font-size: 54px;
    margin-bottom: 32px;
  }

  .intro-text {
    font-size: 18px;
    line-height: 1.75;
  }

  .home-intro-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-intro-buttons .button {
    text-align: center;
  }

  .contact-home {
    padding: 70px 22px;
    grid-template-columns: 1fr;
  }

  .contact-home h2 {
    font-size: 34px;
  }

  .contact-home iframe {
    height: 340px;
  }

  .fullscreen-menu-inner {
    width: min(360px, 90vw);
    padding: 95px 30px 40px;
  }

  .fullscreen-menu-inner a {
    font-size: 24px;
  }
}