/* ---------- RESET / ΒΑΣΙΚΕΣ ΡΥΘΜΙΣΕΙΣ ---------- */
html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* ----- NAV (Με banner ως background) ----- */
.main-nav {
  height: 120px;
  background: url("pics/banner.png") left/contain no-repeat;
  background-color: #0c7c8c;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.main-nav.nav-hidden {
  transform: translateY(-100%);
}

/* 
   Αν θέλεις ελαφρώς ημιδιαφανή «επικάλυψη» για καλύτερη αντίθεση κειμένου, 
   μπορείς να προσθέσεις ένα pseudo-element. Π.χ.:

   .main-nav::before {
     content: "";
     position: absolute;
     top: 0; left: 0; right: 0; bottom: 0;
     background: rgba(0,0,0,0.2);
   }
*/

.logo-text {
  position: absolute;
  top: 10px;
  left: 20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* ΜΕΝU LINKS (πάνω δεξιά ή κάτω κ.λπ.) */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  position: absolute;
  bottom: 15px; 
  right: 20px;
  margin: 0;
}

.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* ----- NEWS TICKER ----- */
.news-ticker {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  height: 45px;
  background: linear-gradient(135deg, #0c7c8c 0%, #0a6570 100%);
  display: flex;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.news-ticker.nav-hidden {
  transform: translateY(-165px);
}

.ticker-label {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 0 25px;
  font-weight: 600;
  font-size: 0.9rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  animation: scroll-left 40s linear infinite;
  gap: 60px;
  padding-left: 60px;
}

.ticker-item {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 15px;
}

.ticker-item::before {
  content: "→";
  margin-right: 10px;
  opacity: 0.7;
}

.ticker-item:hover {
  color: #ffd700;
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}


/* ----- MAIN CONTENT ----- */
.content {
  flex: 1; /* γεμίζει τον χώρο έως κάτω, σπρώχνοντας το footer */
  padding-top: 165px; /* Αφήνει χώρο για το fixed nav + ticker */
}

.section {
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2 {
  color: #0c7c8c;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0c7c8c, #4facfe);
  border-radius: 2px;
}

/* ----- FOOTER (STICKY) ----- */
.main-footer {
  background-color: #0c7c8c;
  color: #fff;
  text-align: center;
  padding: 5px;
}

/* ----- Services Grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(12, 124, 140, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 124, 140, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(12, 124, 140, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(12, 124, 140, 0.2);
}

.service-icon i {
  font-size: 1.8rem;
  color: #0c7c8c;
}

.service-card h3 {
  color: #0c7c8c;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-card li {
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(12, 124, 140, 0.1);
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #555;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0c7c8c;
  font-weight: bold;
}

.service-card li:last-child {
  border-bottom: none;
}

/* ----- Flyer Section Enhanced ----- */
.flyer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.flyer-preview {
  position: relative;
  max-width: 600px;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.flyer-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.flyer-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.flyer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 124, 140, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
}

.flyer-overlay i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.flyer-overlay span {
  font-size: 1.1rem;
  font-weight: 500;
}

.flyer-preview:hover .flyer-overlay {
  opacity: 1;
}

.flyer-preview:hover .flyer-img {
  transform: scale(1.05);
}

.flyer-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.pdf-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #666;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1.5px solid #ddd;
  font-size: 0.95rem;
}

.pdf-download-btn:hover {
  background: #f8f9fa;
  border-color: #0c7c8c;
  color: #0c7c8c;
  text-decoration: none;
}

.pdf-download-btn i {
  font-size: 1rem;
}

/* Add these new classes at the top */
/* Add at the top with other initial styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
}

.logo-mobile {
  display: none;
  width: 120px;
  height: auto;
}

/* ----------- ΝΕΕΣ ΚΛΑΣΕΙΣ ΓΙΑ ΤΟ ΒΙΟΓΡΑΦΙΚΟ ---------- */
.bio-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

.doctor-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.bio-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bio-info h3 {
  color: #0c7c8c;
  margin: 0;
  font-size: 1.5rem;
}

.doctor-title {
  font-weight: bold;
  font-style: italic;
  color: #555;
}

.bio-section {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.bio-section h3 {
  color: #0c7c8c;
  margin-bottom: 10px;
}

.bio-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.6;
}

.bio-list li {
  margin-bottom: 5px;
}

/* Timeline style (προαιρετικά) */
.timeline {
  margin-top: 10px;
  border-left: 3px solid #0c7c8c;
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 10px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 4px;
  width: 10px;
  height: 10px;
  background-color: #0c7c8c;
  border-radius: 50%;
}

.timeline-item .year {
  font-weight: bold;
  color: #0c7c8c;
  margin-right: 8px;
}

/* Operations list ή υπηρεσίες */
.operations-list {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.6;
}

.operations-list li:hover {
  color: #0c7c8c;
  transition: color 0.2s;
}

/* ----- PHOTOS GRID (Ο Χώρος) ----- */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;   
  margin-top: 20px;
}

.photo-item {
  position: relative;     
  overflow: hidden;
  border-radius: 6px;     
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.space-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}
/* Photo Gallery Enhancements */
.photo-item {
  position: relative;     
  overflow: hidden;
  border-radius: 12px;     
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 124, 140, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-overlay i {
  color: white;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-item:hover .space-photo {
  transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: flex-start;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  overflow-x: auto;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox[style*="flex"] {
  display: flex !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
  margin: 20px auto;
  display: block;
  object-fit: contain;
  cursor: grab;
  user-select: none;
  transition: transform 0.1s ease-out;
}

.lightbox-content:active {
  cursor: grabbing;
}

@keyframes zoomIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 100000;
}

.lightbox-close:hover {
  color: #0c7c8c;
}

/* -- Hero Section (αρχικό καλωσόρισμα) -- */
.hero-section {
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 252, 0.8));
  margin-bottom: 20px;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  font-weight: 700;
  color: #0c7c8c;
}

.hero-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0c7c8c, #4facfe);
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(12, 124, 140, 0.3);
}

.hero-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: #0c7c8c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(12, 124, 140, 0.2);
  border: none;
}

.cta-button:hover {
  background: #095f6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(12, 124, 140, 0.3);
}

.cta-button-large {
  padding: 18px 36px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(12, 124, 140, 0.3);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(12, 124, 140, 0.4);
}

/* -- Features Container (κάρτες) -- */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

/* Κάθε card έχει φόντο + overlay */
.feature-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 420px;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  color: #fff;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(12, 124, 140, 0.3);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80, 80, 80, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  background: linear-gradient(135deg, rgba(70, 70, 70, 0.8), rgba(0, 0, 0, 0.6));
}

/* Περιεχόμενο κάρτας, τίτλος & κείμενο */
.feature-content {
  position: relative;
  z-index: 2;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  
  align-items: center;          
  height: 100%;
  gap: 20px;
  text-align: center;
}

.feature-content h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  position: relative;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-content p {
  margin: 0;
  line-height: 1.6;
  color: #f0f0f0;
  text-align: center;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* -- Short Benefits List -- */
.short-benefits-section {
  background-color: #fff;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.short-benefits-section h2 {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.short-benefits-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0c7c8c;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Feature Icons */
.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 5px;
  color: #fff;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.short-benefits-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  line-height: 1.8;
}

.short-benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(12, 124, 140, 0.05);
  border-radius: 10px;
  border-left: 4px solid #0c7c8c;
  transition: all 0.3s ease;
}

.short-benefits-list li:hover {
  transform: translateX(5px);
  background: rgba(12, 124, 140, 0.1);
  box-shadow: 0 5px 15px rgba(12, 124, 140, 0.2);
}

.short-benefits-list li i {
  font-size: 1.2rem;
  color: #0c7c8c;
  min-width: 20px;
}

/* ----- Contact Info Cards ----- */
.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(12, 124, 140, 0.05);
  border-radius: 12px;
  border-left: 4px solid #0c7c8c;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(12, 124, 140, 0.2);
}

.contact-item i {
  font-size: 24px;
  color: #0c7c8c;
  min-width: 30px;
  margin-top: 5px;
}

.contact-details h4 {
  color: #0c7c8c;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details p {
  margin: 5px 0;
  color: #555;
}

.contact-details a {
  color: #0c7c8c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #4facfe;
  text-decoration: underline;
}

/* ----- Social Section ----- */
.social-section {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, rgba(12, 124, 140, 0.1), rgba(79, 172, 254, 0.1));
  border-radius: 15px;
  border: 1px solid rgba(12, 124, 140, 0.2);
}

.social-section h4 {
  color: #0c7c8c;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.social-section h4 i {
  margin-right: 10px;
  color: #4facfe;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 140px;
  justify-content: center;
}

.social-btn.google {
  background: linear-gradient(135deg, #ce472c, #f4511e);
  color: white;
}

.social-btn.facebook {
  background: linear-gradient(135deg, #4267B2, #1877f2);
  color: white;
}

.social-btn.linkedin {
  background: linear-gradient(135deg, #0077B5, #00a0dc);
  color: white;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn i {
  font-size: 18px;
}

.social-btn span {
  font-size: 14px;
}
/* ----- Location Info Card ----- */
.location-info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(12, 124, 140, 0.05);
  border-radius: 12px;
  border-left: 4px solid #0c7c8c;
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 124, 140, 0.2);
}

.location-item i {
  font-size: 20px;
  color: #0c7c8c;
  min-width: 25px;
  margin-top: 3px;
}

.location-details h4 {
  color: #0c7c8c;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.location-details p {
  margin: 3px 0;
  color: #555;
  font-size: 0.95rem;
}

.location-details a {
  color: #0c7c8c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-details a:hover {
  color: #4facfe;
  text-decoration: underline;
}

/* ----- Map Container Styling ----- */
.map-container {
  margin-top: 25px;
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(12, 124, 140, 0.1);
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(12, 124, 140, 0.3);
}

/* ----- Contact Wrapper: δύο στήλες ----- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* δύο στήλες, ίσος χώρος */
  gap: 20px;                      /* κενό μεταξύ στηλών */
}


/* =======================
   MEDIA QUERY #1 
   max-width: 768px
   (Π.χ. Tablets και μικρότερα)
   ======================= */
/* Update your existing media queries */
@media (max-width: 768px) {

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr; /* δύο στήλες, ίσος χώρος */
    gap: 20px;                      /* κενό μεταξύ στηλών */
  }
  .main-nav {
      height: auto;
      background: #0c7c8c;
      background-image: none;
      padding: 10px;
      position: relative;
  }

  .content {
      padding-top: 0;
  }

  /* Hide ticker on mobile or adjust it */
  .news-ticker {
      position: relative;
      top: 0;
      height: 40px;
  }

  .ticker-label {
      padding: 0 15px;
      font-size: 0.8rem;
  }

  .ticker-item {
      font-size: 0.85rem;
  }

  .ticker-content {
      gap: 40px;
      padding-left: 40px;
  }

  .menu-toggle {
      display: block;
  }

  .logo-mobile {
      display: block;
      margin: 10px 20px;
  }

  .main-nav ul {
      display: none;
      width: 100%;
      background: #0c7c8c;
      position: static; /* Changed from absolute to static */
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      gap: 15px;
      margin-top: 20px;
  }

  .main-nav ul.show {
      display: flex;
  }

  .main-nav ul li {
      width: 100%;
      text-align: center;
  }

  .main-nav ul li a {
      display: block;
      width: 100%;
      padding: 15px 0;
      background: none;
  }


  /* Keep your existing mobile styles below */

  /* Hero Section: λιγότερο padding */
  .hero-section {
    padding: 20px 10px;
    margin-bottom: 15px;
  }
  .hero-section h2 {
    font-size: 1.6rem;  
  }
  .hero-section p {
    font-size: 0.95rem;
  }

  /* Feature Cards: μία στήλη ή πιο χαμηλό ύψος */
  .features-container {
    flex-direction: column;
    gap: 15px;
  }
  .feature-card {
    max-width: 90%; 
    margin: 0 auto 15px;  
    height: 300px; 
  }
  
  /* Services Grid για mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
  }
  
  .flyer-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .pdf-download-btn, .cta-button {
    width: 100%;
    justify-content: center;
  }

  /* Photos Grid (“Ο Χώρος”): 2 στήλες αντί για 3+ */
  .photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
  .photo-item {
    border-radius: 8px;
  }
  
  /* Location Info Card για mobile */
  .location-info-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .location-item {
    padding: 15px;
  }
  
  /* Map responsive */
  .map-wrapper iframe {
    height: 300px;
  }

  /* Short Benefits List */
  .short-benefits-list {
    margin-left: 20px; 
    font-size: 0.95rem;
  }

  /* CTA Button responsive για mobile */
  .cta-button-large {
    padding: 15px 25px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  /* Section improvements for mobile */
  .section {
    padding: 25px 15px;
    margin-bottom: 20px;
    border-radius: 15px;
  }
  
  .section h2 {
    font-size: 1.8rem;
  }

  /* Social Icons */
  .social-icons i {
    font-size: 25px;
  }

  /* Footer */
  .main-footer {
    padding: 5px 10px;
  }
}

.contact-wrapper {
  flex-direction: column;
}
.contact-left,
.contact-right {
  width: 100%;
}

/* =======================
   MEDIA QUERY #2
   max-width: 480px
   (Π.χ. μικρά κινητά)
   ======================= */
@media (max-width: 480px) {
  /* Nav: ακόμα πιο συμπαγές */
  .main-nav ul {
    gap: 8px;
    margin: 8px auto;
  }
  .main-nav ul li a {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  /* Hero Section */
  .hero-section {
    padding: 15px 8px;
  }
  .hero-section h2 {
    font-size: 1.4rem;
  }
  .hero-section p {
    font-size: 0.88rem;
  }

  /* CTA Button για πολύ μικρά κινητά */
  .cta-button-large {
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }

  /* Feature Cards */
  .feature-card {
    max-width: 100%;
    height: 250px;
  }
  .features-container {
    gap: 10px;
  }

  /* Photos Grid: 1-2 στήλες */
  .photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  /* Short Benefits List */
  .short-benefits-list {
    margin-left: 15px;
    font-size: 0.9rem;
  }

  /* Social Icons */
  .social-icons i {
    font-size: 22px; 
  }

  /* Footer */
  .main-footer {
    padding: 5px;
  }

  .bio-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
}

.doctor-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.bio-info {
    width: 100%;
}
}

@media (max-width: 480px) {
.bio-card {
    padding: 10px;
}

.doctor-photo {
    width: 150px;
    height: 150px;
}

.bio-info h3 {
    font-size: 1.3rem;
}

}

/* ----- ARTICLES PAGE STYLES ----- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.article-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.article-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(12, 124, 140, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  align-items: stretch;
  box-sizing: border-box;
  cursor: pointer;
}

.article-card-link:hover .article-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 124, 140, 0.2);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card-link:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  text-align: center;
  width: 100%;
  padding: 20px 20px 25px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  box-sizing: border-box;
}

.article-content h3 {
  color: #0c7c8c;
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.article-meta {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}

.article-excerpt {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0c7c8c;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  margin-top: auto;
}

.read-more-btn:hover {
  background: #095f6a;
  transform: translateX(3px);
}

.read-more-btn i {
  font-size: 1rem;
}

/* Articles responsive για mobile */
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .article-card {
    padding: 20px 15px;
  }

  .article-content h3 {
    font-size: 1.2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ----- FULL ARTICLE PAGE STYLES ----- */
.article-full {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(12, 124, 140, 0.15);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0c7c8c;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #4facfe;
  transform: translateX(-3px);
}

.article-full h1 {
  color: #0c7c8c;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.article-body {
  line-height: 1.8;
  font-size: 1.05rem;
}

.lead-paragraph {
  font-size: 1.15rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(12, 124, 140, 0.15);
}

.article-body h2 {
  color: #0c7c8c;
  font-size: 1.75rem;
  margin-top: 45px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12, 124, 140, 0.15);
}

.article-body h3 {
  color: #0c7c8c;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.article-body h4 {
  color: #0c7c8c;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 20px;
  color: #444;
}

.symptom-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.symptom-list li {
  margin-bottom: 10px;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.symptom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0c7c8c;
  font-weight: bold;
}

.symptom-list li i {
  color: #0c7c8c;
  font-size: 1.1rem;
  margin-top: 3px;
  min-width: 20px;
  margin-right: 10px;
}

.info-box {
  background: rgba(12, 124, 140, 0.03);
  border-left: 3px solid #0c7c8c;
  border-radius: 4px;
  padding: 20px 25px;
  margin: 25px 0;
}

.info-box h4 {
  color: #0c7c8c;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h4 i {
  font-size: 1.3rem;
}

.info-box p {
  margin-bottom: 0;
}

.treatment-box {
  background: #f8f9fa;
  border: 1px solid rgba(12, 124, 140, 0.15);
  border-radius: 4px;
  padding: 25px;
  margin: 25px 0;
}

.treatment-box h4 {
  color: #0c7c8c;
  margin-top: 0;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}

.treatment-box ul {
  margin: 0;
  padding-left: 20px;
}

.treatment-box li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.treatment-box strong {
  color: #0c7c8c;
}

.faq-box {
  background: #ffffff;
  border: 1px solid rgba(12, 124, 140, 0.12);
  border-radius: 4px;
  padding: 20px 25px;
  margin: 20px 0;
}

.faq-box h4 {
  color: #0c7c8c;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.faq-box p {
  margin-bottom: 0;
  color: #555;
}

.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(12, 124, 140, 0.2);
  text-align: center;
}

.disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: left;
  color: #666;
}

.disclaimer i {
  color: #ffc107;
  margin-right: 8px;
}

/* Article page responsive */
@media (max-width: 768px) {
  .article-full h1 {
    font-size: 2rem;
  }

  .article-body h2 {
    font-size: 1.5rem;
  }

  .article-body h3 {
    font-size: 1.2rem;
  }

  .lead-paragraph {
    font-size: 1.05rem;
    padding: 15px;
  }

  .article-body {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .article-full h1 {
    font-size: 1.6rem;
  }

  .article-body h2 {
    font-size: 1.3rem;
  }

  .article-body h3 {
    font-size: 1.1rem;
  }

  .info-box, .treatment-box, .faq-box {
    padding: 15px;
  }

  .symptom-list li {
    padding: 10px;
  }
}
