* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 font-family: 'Segoe UI Light', 'Segoe UI', sans-serif;
}
.burger {
  display: none;
}
body {
  background: #121212;
  color: #f5f5f5;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 25px 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
}
.nav-links {
  display: flex;
  gap: 70px;   /* πιο ανοιχτό */
}
.nav-links a {
  text-decoration: none;
  color: #e6c369;
}

.nav-links a:visited {
  color: #e6c369;
}
.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 120px;
}
.nav-links a {
  text-decoration: none;
  color: #e6c369;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #e6c369;
  left: 0;
  bottom: 0;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


.logo-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
}

.logo-wrap img {
  height: 150px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #e6c369;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  height: 75vh;
  min-height: 600px;
  background: url('../images/taxi.jpg') center 80% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
}
/* BUTTONS */

.btn-whatsapp,
.btn-gold {
  background: #e6c369;
  color: black;
  padding: 9px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-whatsapp:hover,
.btn-gold:hover {
  background: #caa94f;
  transform: translateY(-2px);
}
.hero-call {
  font-size: 18px;
  padding: 16px 40px;
  letter-spacing: 1px;
}
/* SECTIONS */

section {
  padding: 100px 80px;
  text-align: center;
}

h2 {
  color: #e6c369;
  margin-bottom: 30px;
}
.final-cta a {
  margin-top: 20px;
  display: inline-block;
}

/* SERVICES */

.services-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  width: 260px;
  border: 1px solid rgba(230,195,105,0.2);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* MAP */

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: none;
  margin-top: 30px;
}
.map-cta {
  margin-top: 50px;   /* το κατεβάζει πιο κάτω */
}




/* SOCIAL */

.social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.social-card {
  background: #1e1e1e;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  color: #e6c369;
  transition: 0.3s ease;
}

.social-card:hover {
  background: #2a2a2a;
}

/* ===============================
   FOOTER PREMIUM
=================================*/

.footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 80px 80px 30px 80px;
  border-top: 1px solid rgba(230,195,105,0.2);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-brand img {
  height: 70px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #e6c369;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #aaa;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #e6c369;
}

.footer-col p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(230,195,105,0.15);
  font-size: 0.9rem;
  color: #888;
}
.footer-social {
   margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  text-decoration: none;
  color: #aaa;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #e6c369;
}
.footer-social a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.footer-social a img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(230,195,105,0.5);
}




/* FLOATING WHATSAPP */

.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
}
.why-us ul {
  list-style-type: none !important;
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.why-us li {
  list-style: none !important;
}
.why-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.why-card {
  background: #1e1e1e;
  padding: 30px 40px;
  border-radius: 18px;
  width: 280px;
  border: 1px solid rgba(230,195,105,0.2);
  color: #f5f5f5;
  transition: 0.3s ease;
  font-size: 1rem;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #e6c369;
}
.lang-switch {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.lang-switch span {
  color: #777;
}

.lang-btn {
  text-decoration: none;
  color: #aaa;
  font-weight: 500;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover {
  color: #e6c369;
}

.lang-btn.active {
  color: #e6c369;
}

/* ===============================
   ABOUT HERO
=================================*/

.about-hero {
  height: 50vh;
  background: url('../images/petanous.jpg') center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: #e6c369;
  margin: 15px auto;
}

/* ===============================
   ABOUT HERO
=================================*/

.about-hero {
  height: 50vh;
  background: url('../images/petanoi.jpg') center 65% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: #e6c369;
  margin: 15px auto;
}

/* ===============================
   ABOUT SECTION
=================================*/

.about-section {
  padding: 120px 80px;
  background: #141414;
  text-align: center;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.about-text {
  max-width: 500px;
}

.about-highlight {
  background: #1e1e1e;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(230,195,105,0.2);
  max-width: 350px;

}

.about-highlight h3 {
  color: #e6c369;
  margin-bottom: 20px;
}

.about-highlight ul {
  list-style: none;
  padding: 0;
}

.about-highlight li {
  margin-bottom: 10px;
}

.about-cta {
  margin-top: 80px;
  text-align: center;
}
.about-cta a {
  margin-top: 20px;
  display: inline-block;
}

/* CONTACT HERO */

.contact-hero {
  padding: 140px 80px 80px 80px;
  text-align: center;
  background: #111;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-hero p {
  color: #ccc;
}

/* MAIN CONTACT SECTION */

.contact-main {
  display: flex;
  gap: 80px;
  padding: 100px 80px;
  background: #141414;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 320px;
}

.contact-right {
  flex: 1;
  min-width: 320px;
}

.contact-buttons {
   margin: 40px auto;
  display: flex;
  gap: 20px;
  justify-content: center;  
  align-items: center;
  flex-wrap: wrap;
}

.large-btn {
  padding: 14px 30px;
  font-size: 1.1rem;
}

.contact-info {
  margin-top: 30px;
  line-height: 1.8;
}


.review-box {
  margin-top: 60px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(230,195,105,0.3);
  background: #1e1e1e;
}

.review-box h3 {
  color: #e6c369;
  margin-bottom: 15px;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #e6c369;
  color: #e6c369;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #e6c369;
  color: black;
}

/* HERO */
.services-hero {
  padding: 140px 80px 80px;
  text-align: center;
  background: #111;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* GRID */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 100px 80px;
  background: #141414;
}

/* CARD */
.destination-card {
  background: #1e1e1e;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(230,195,105,0.2);
  transition: 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  border-color: #e6c369;
}

.destination-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-content {
  padding: 25px;
}

.destination-content h3 {
  color: #e6c369;
  margin-bottom: 10px;
}

.destination-content p {
  color: #ccc;
  margin-bottom: 15px;
}

/* CTA */
.services-cta {
  padding: 100px 80px;
  text-align: center;
  background: #111;
}
/* =========================
   SERVICES PAGE (MODERN)
========================= */

/* HERO SECTION */
.services-hero-modern {
  padding: 160px 80px 100px;
  text-align: center;
  background: #111;
}

.services-hero-modern h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.services-hero-modern p {
  color: #ccc;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* SPLIT SECTIONS */
.service-split {
  padding: 100px 80px;
  background: #141414;
  transition: 0.3s ease;
}

.service-split.alt {
  background: #111;
}

.service-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.service-text h2 {
  color: #e6c369;
  margin-bottom: 20px;
  font-size: 2rem;
}

.service-text p {
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* FEATURES LIST */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  margin-bottom: 12px;
  color: #ddd;
  font-size: 1rem;
  transition: 0.3s ease;
}

.service-features li:hover {
  color: #e6c369;
  transform: translateX(5px);
}

/* CTA SECTION */
.services-cta-modern {
  padding: 120px 80px;
  text-align: center;
  background: #111;
}

.services-cta-modern h2 {
  margin-bottom: 40px;
  font-size: 2rem;
}

/* BUTTONS CENTER */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* GOLD BUTTON */
.btn-gold {
  background: #e6c369;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gold:hover {
  box-shadow: 0 0 20px rgba(230,195,105,0.6);
  transform: translateY(-3px);
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: #1e1e1e;
  border: 1px solid #e6c369;
  color: #e6c369;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-whatsapp:hover {
  background: #e6c369;
  color: black;
  transform: translateY(-3px);
}

/* GOLD LINE (αν δεν υπάρχει ήδη) */
.gold-line {
  width: 80px;
  height: 2px;
  background: #e6c369;
  margin: 20px auto;
}
/* KEFALONIA HERO */
.kef-hero {
  height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../images/myrtos.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kef-hero-content h1 {
  font-size: 3rem;
}

/* INTRO */
.kef-intro {
  padding: 100px 80px;
  text-align: center;
  background: #141414;
}

.kef-intro h2 {
  color: #e6c369;
  margin-bottom: 20px;
}

/* SPLIT SECTIONS */
.kef-split {
  display: flex;
  align-items: center;
  padding: 100px 80px;
  gap: 60px;
  background: #111;
  flex-wrap: wrap;
}

.kef-split.alt {
  background: #141414;
}

.kef-text {
  flex: 1;
  min-width: 300px;
}

.kef-text h2 {
  color: #e6c369;
  margin-bottom: 20px;
}

.kef-image {
  flex: 1;
  min-width: 300px;
}

.kef-image img {
  width: 100%;
  border-radius: 20px;
  transition: 0.3s ease;
}

.kef-image img:hover {
  transform: scale(1.03);
}

/* CTA */
.kef-cta {
  padding: 120px 80px;
  text-align: center;
  background: #111;
}
/* ============================
   MOBILE RESPONSIVE FIXES
============================ */

@media (max-width: 768px) {

  /* GENERAL PADDING */
  section,
  .services-cta,
  .kef-intro,
  .kef-split,
  .service-split {
    padding: 60px 20px;
  }

  /* NAVBAR */
  .nav-container {
    padding: 0 20px;
  }

  /* Hide menu by default */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 25px;
    background: rgba(0,0,0,0.95);
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding-top: 120px;
    text-align: center;
    z-index: 999; /* menu layer */
  }

  /* Show menu when active */
  .nav-links.active {
    display: flex !important;
  }

  /* BURGER BUTTON — FIXED ABOVE EVERYTHING */
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 25px;
    z-index: 9999; /* always clickable */
  }

  .burger span {
    width: 28px;
    height: 3px;
    background: #e6c369;
    transition: 0.3s ease;
  }

  /* BURGER → X ANIMATION */
  .burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.open span:nth-child(2) {
    opacity: 0;
  }

  .burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* CENTER GR/EN ON MOBILE */
  .lang-switch {
    position: fixed;
     top: 10px;
      left: 62%; 
      transform: translateX(-50%);
       z-index: 9999;
  }

  /* HERO TEXT */
  .hero h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: 2rem;
  }

  /* FLEX GRIDS → STACK */
  .services-grid,
  .why-grid,
  .contact-main,
  .kef-split {
    flex-direction: column;
    align-items: center;
  }

  /* UNIFORM BOXES */
  .service-card,
  .why-card,
  .about-highlight,
  .destination-card,
  .review-box {
    width: 100%;
    max-width: 350px;
  }

  /* LOGO SMALLER */
  .logo-wrap img {
    height: 90px;
  }
}
@media (max-width: 768px) {

  .contact-main {
    padding: 40px 20px !important;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    text-align: center;
  }

  .contact-buttons {
    justify-content: center;
  }

  .review-box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .social-card {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* HERO CONTACT TITLE FIX */ 
.contact-hero { padding: 140px 20px 60px 20px; text-align: center; }

@media (max-width: 768px) {

  .contact-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .contact-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .kef-split {
    display: flex;
    flex-direction: column;
  }

  .kef-split .kef-text {
    order: 1;
  }

  .kef-split .kef-image {
    order: 2;
  }
}
@media (max-width: 768px) {
  .services-hero-modern h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}



/* ============================
   TABLET RESPONSIVE FIXES
   (768px – 1024px)
============================ */

@media (min-width: 769px) and (max-width: 1024px) {

  /* GENERAL PADDING */
  section,
  .services-cta,
  .kef-intro,
  .kef-split,
  .service-split {
    padding: 80px 40px;
  }

  /* NAVBAR */
  .nav-container {
    padding: 0 40px;
  }

  .nav-links {
    gap: 40px;
  }

  .logo-wrap img {
    height: 120px;
  }

  /* HERO TEXT */
  .hero h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: 2.5rem;
  }

  /* GRID LAYOUTS */
  .services-grid,
  .why-grid {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* UNIFORM BOXES */
  .service-card,
  .why-card,
  .about-highlight,
  .destination-card,
  .review-box {
    width: 45%;
    max-width: 400px;
  }

  /* CONTACT PAGE */
  .contact-main {
    gap: 40px;
    padding: 80px 40px;
  }

  /* KEFALONIA SPLIT */
  .kef-split {
    gap: 40px;
  }

  .kef-text,
  .kef-image {
    flex: 1;
    min-width: 350px;
  }
}
