/* ======= Βασικά ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff;
    color: #010024;
    line-height: 1.6;
}

/* ======= Links χωρίς υπογραμμίσεις ======= */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}
a:visited, a:hover, a:active, a:focus {
    text-decoration: none;
    outline: none;
}

/* ======= Κεντρικός container ======= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======= Header ======= */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 220px;
    width: 220px;
    object-fit: contain;
}

/* ======= Navigation Menu ======= */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #010024;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.4s ease;
}

/* Hover animation - “glow” underline effect */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #65c1be;
    transition: width 0.35s ease;
}

nav ul li a:hover {
    color: #65c1be;
    text-shadow: 0 0 6px rgba(101, 193, 190, 0.6);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Active link (current page) */
nav ul li a.active {
    color: #65c1be;
    text-shadow: 0 0 6px rgba(101, 193, 190, 0.6);
}

nav ul li a.active::after {
    width: 100%;
}

/* ======= Hero & About Hero Sections ======= */
.hero,
.about-hero {
    position: relative;
    color: #fff;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}

.hero {
    background-image: url('../images/background.jpg');
}
.about-hero {
    background-image: url('../images/about-bg.jpg');
}

.hero::after,
.about-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;

    z-index: 0;
}

.hero-content,
.about-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero h1 {
    color: #65c1be;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #fff;
    max-width: 800px;
}

.about-content h2 {
    color: #65c1be;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #fff;
}

.about-content ul {
    list-style: disc;
    margin-left: 20px;
    color: #fff;
}

.about-content li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-hero {
  background: url('../images/contact-bg.jpg') center center / cover no-repeat;
  position: relative;
  color: #fff;
  padding: 160px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 0, 36, 0.7);
  z-index: 0;
}

/* ======= Contact Hero Section ======= */
.contact-hero {
  background: url('../images/contact-bg.jpg') center center / cover no-repeat;
  position: relative;
  color: #fff;
  padding: 160px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 0, 36, 0.7);
  z-index: 0;
}

.contact-hero .about-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.contact-hero h1 {
  color: #65c1be;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.contact-hero p {
  color: #fff;
  font-size: 1.1rem;
}

/* ======= Contact Info Section ======= */
.contact-info {
  padding: 60px 0;
  background-color: #fff;
  text-align: left;
}

.contact-info h2 {
  color: #65c1be;
  margin-bottom: 25px;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 25px;
}

.contact-info ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #010024;
}

.contact-info ul li i {
  color: #65c1be;
  margin-right: 10px;
}



/* ======= Footer ======= */
footer {
    background-color: #fff;
    border-top: 3px solid #65c1be;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-logo img {
    height: 140px;
    width: 140px;
    object-fit: contain;
}

footer h3 {
    color: #65c1be;
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
}

footer p, footer li, footer a {
    color: #010024;
    font-size: 0.95rem;
}

/* Hover glow στα footer links */
footer a:hover {
    color: #65c1be;
    text-shadow: 0 0 6px rgba(101, 193, 190, 0.6);
}

/* ======= Social Icons ======= */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #65c1be;
    color: #010024;
    font-size: 18px;
    box-shadow: 0 0 0 rgba(101, 193, 190, 0);
    transition: all 0.35s ease, box-shadow 0.35s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, #65c1be 0%, #33d8a0 100%);
    color: #010024;
    box-shadow: 0 0 8px rgba(101, 193, 190, 0.7);
    transform: translateY(-3px);
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero,
    .about-hero {
        text-align: center;
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}



/* =========================================================
   TESTIMONIALS PAGE — PREMIUM STYLE
========================================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Modern testimonial card */
.testimonial-box {
    background: #86bfbd; /* ημιδιαφανές για dark theme */
    border: 1px solid #65c1be30;
    padding: 25px;
    border-radius: 12px;
    color: #e8fdfc;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

/* Hover animation */
.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Quote text */
.testimonial-box .quote {
    font-size: 1.1rem;
    line-height: 1.7;
	color: #000000;
    font-style: italic;
    margin-bottom: 12px;
}

/* Anonymous user label */
.testimonial-box .author {
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Section title */
.testimonial-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #65c1be;
    margin-bottom: 25px;
}

/* Google Review Button */
.google-review-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #65c1be;
    color: #010024;
    border-radius: 40px;
    font-weight: 700;
    margin: 25px 0;
    transition: 0.3s ease;
}

.google-review-btn:hover {
    background: linear-gradient(135deg, #65c1be 0%, #33d8a0 100%);
    transform: scale(1.05);
}

/* Google review banner image */
.google-review-banner {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 30px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
