@import url('_variables.css');
/* ------------------------------
   FOOTER NAVIGATION
------------------------------ */

.footer-nav {
  background-color: #00567c; /* ίδιο χρώμα με το site */
  color: #fff;
  padding: 60px 20px;
}

.footer-nav__container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav__col {
  min-width: 160px;
}

.footer-nav__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-nav__title a {
  color: #fff;
  text-decoration: none;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav__list li {
  margin-bottom: 8px;
}

.footer-nav__list a {
  color: #d4e3f2; /* ίδιο ανοιχτό μπλε όπως στο export */
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav__list a:hover {
  color: #fff;
}

/* ------------------------------
   FOOTER BOTTOM
------------------------------ */

.footer-bottom {
  background-color: #004466; /* πιο σκούρο μπλε για contrast */
  color: #d4e3f2;
  padding: 20px;
}

.footer-bottom__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-bottom__left {
  font-size: 14px;
}

.footer-bottom__credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer-bottom__credits a {
  color: #d4e3f2;
  text-decoration: none;
}

.footer-bottom__credits a:hover {
  color: #fff;
}

.footer-bottom__right {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #d4e3f2;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .footer-nav__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .footer-nav__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bottom__container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-nav__container {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background image (όπως στο Elementor) */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2024/01/hero-bg.jpg'); /* άλλαξέ το στο σωστό path */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* ίδιο opacity με Elementor */
  z-index: 2;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .hero {
    height: 500px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 420px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 380px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 15px;
  }
}

/* ------------------------------
   FOUR COLUMNS SECTION
------------------------------ */

.four-columns {
  background-color: #f7f9fb; /* ίδιο ανοιχτό γκρι/μπλε όπως στο site */
  padding: 80px 20px;
}

.four-columns__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.four-columns__item {
  text-align: center;
}

.four-columns__icon img {
  max-width: 80px;
  margin-bottom: 20px;
}

.four-columns__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00567c;
}

.four-columns__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .four-columns__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .four-columns__container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ------------------------------
   ATHENS BRAIN & SPINE SURGERY SECTION
------------------------------ */

.abs-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.abs-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.abs-section__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.abs-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 20px;
}

.abs-section__text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.abs-section__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.abs-section__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .abs-section__container {
    gap: 40px;
  }

  .abs-section__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .abs-section__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abs-section__image {
    order: -1; /* εικόνα πάνω στο mobile */
  }

  .abs-section__title {
    font-size: 26px;
  }

  .abs-section__text {
    font-size: 16px;
  }
}

/* ------------------------------
   WHY US SECTION
------------------------------ */

.why-us {
  background-color: #ffffff;
  padding: 80px 20px;
}

.why-us__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-us__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 20px;
}

.why-us__intro {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.why-us__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.why-us__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.why-us__icon {
  color: #00567c;
  font-size: 20px;
  font-weight: 700;
  margin-top: 2px;
}

.why-us__item p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 767px) {
  .why-us__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-us__title {
    font-size: 28px;
  }

  .why-us__intro {
    font-size: 16px;
  }
}

/* ------------------------------
   ICON CAROUSEL SECTION
------------------------------ */

.icon-carousel {
  background-color: #f7f9fb;
  padding: 60px 20px;
}

.icon-carousel__container {
  max-width: 1200px;
  margin: 0 auto;
}

.icon-carousel__item {
  text-align: center;
  padding: 20px;
}

.icon-carousel__item img {
  max-width: 80px;
  margin-bottom: 15px;
}

.icon-carousel__item p {
  font-size: 15px;
  color: #333;
}

/* Navigation arrows */
.icon-carousel__nav {
  width: 40px;
  height: 40px;
  background-color: #00567c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
}

.icon-carousel__nav--prev {
  left: -20px;
}

.icon-carousel__nav--next {
  right: -20px;
}

.icon-carousel__nav::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-carousel__nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 767px) {
  .icon-carousel__nav {
    display: none;
  }
}

/* ------------------------------
   PATHISEIS SLIDER
------------------------------ */

.pathiseis {
  background-color: #ffffff;
  padding: 80px 20px;
}

.pathiseis__container {
  max-width: 1200px;
  margin: 0 auto;
}

.pathiseis__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  text-align: center;
  margin-bottom: 40px;
}

.pathiseis__item {
  background-color: #f7f9fb;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

.pathiseis__item:hover {
  transform: translateY(-5px);
}

.pathiseis__image img {
  width: 100%;
  height: auto;
  display: block;
}

.pathiseis__name {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0 15px;
  color: #333;
}

.pathiseis__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 10px 24px;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.pathiseis__button:hover {
  background-color: #003f5a;
}

/* Navigation arrows */
.pathiseis__nav {
  width: 40px;
  height: 40px;
  background-color: #00567c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
}

.pathiseis__nav--prev {
  left: -20px;
}

.pathiseis__nav--next {
  right: -20px;
}

.pathiseis__nav::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.pathiseis__nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .pathiseis__nav {
    display: none;
  }
}

/* ------------------------------
   CTA SECTION
------------------------------ */

.cta-section {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Background image */
.cta-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2024/01/cta-bg.jpg'); /* άλλαξέ το στο σωστό path */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Dark overlay */
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.cta-section__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section__subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-section__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-section__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 767px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-section__title {
    font-size: 30px;
  }

  .cta-section__subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-section__title {
    font-size: 26px;
  }

  .cta-section__subtitle {
    font-size: 15px;
  }
}

/* ------------------------------
   SYNERGASIES SECTION
------------------------------ */

.synergasies {
  background-color: #f7f9fb;
  padding: 80px 20px;
}

.synergasies__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.synergasies__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 40px;
}

.synergasies__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

.synergasies__item img {
  max-width: 120px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.synergasies__item img:hover {
  opacity: 1;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .synergasies__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .synergasies__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .synergasies__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   TESTIMONIALS SECTION
------------------------------ */

.testimonials {
  background-color: #ffffff;
  padding: 80px 20px;
}

.testimonials__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 40px;
}

.testimonials__item {
  background-color: #f7f9fb;
  padding: 40px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials__text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonials__name {
  font-size: 16px;
  font-weight: 600;
  color: #00567c;
}

/* Navigation arrows */
.testimonials__nav {
  width: 40px;
  height: 40px;
  background-color: #00567c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  cursor: pointer;
}

.testimonials__nav--prev {
  left: -20px;
}

.testimonials__nav--next {
  right: -20px;
}

.testimonials__nav::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.testimonials__nav--prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .testimonials__nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonials__text {
    font-size: 16px;
  }
}

/* ------------------------------
   NEWS SECTION
------------------------------ */

.news-section {
  background-color: #f7f9fb;
  padding: 80px 20px;
}

.news-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  text-align: center;
  margin-bottom: 50px;
}

.news-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.news-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-card__content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.news-card__title a {
  color: #333;
  text-decoration: none;
}

.news-card__title a:hover {
  color: #00567c;
}

.news-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  flex: 1;
}

.news-card__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 10px 24px;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.news-card__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .news-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .news-section__grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   NEWSLETTER SECTION
------------------------------ */

.newsletter {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.newsletter__container {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 20px;
}

.newsletter__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.newsletter__input {
  flex: 1;
  max-width: 350px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter__button {
  background-color: #00567c;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 767px) {
  .newsletter__form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter__input {
    max-width: 100%;
  }
}

/* ------------------------------
   CYPRUS OFFICE SECTION
------------------------------ */

.cyprus-office {
  background-color: #f7f9fb;
  padding: 80px 20px;
}

.cyprus-office__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cyprus-office__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.cyprus-office__title {
  font-size: 32px;
  font-weight: 700;
  color: #00567c;
  margin-bottom: 20px;
}

.cyprus-office__text {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.cyprus-office__details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.cyprus-office__details li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.cyprus-office__button {
  display: inline-block;
  background-color: #00567c;
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cyprus-office__button:hover {
  background-color: #003f5a;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 1024px) {
  .cyprus-office__container {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .cyprus-office__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cyprus-office__image {
    order: -1; /* εικόνα πάνω στο mobile */
  }

  .cyprus-office__details li {
    text-align: center;
  }
}

/* ------------------------------
   HEADER
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo img {
  max-height: 50px;
}

/* Desktop Menu */
.site-header__nav {
  display: flex;
}

.site-header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

.site-header__menu li a:hover {
  color: #00567c;
}

/* Mobile Toggle */
.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__toggle span {
  width: 24px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

/* Mobile Panel */
.site-header__mobile-panel {
  display: none;
  background-color: #ffffff;
  padding: 20px;
  border-top: 1px solid #eee;
}

.site-header__mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-header__mobile-menu li {
  margin-bottom: 15px;
}

.site-header__mobile-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .site-header__nav {
    display: none;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__mobile-panel.active {
    display: block;
  }
}

/*** ***/
.cta-section__bg {
  background-image: url('/wp-content/uploads/.../cta-bg.jpg');
  content-visibility: auto;
}

.cta-section {
    background-image: url('/wp-content/uploads/2024/01/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    content-visibility: auto;
}