:root {
    --primary: #3e84c9;
    --primary-dark: #174577;
    --secondary: #00D1B2;
    --dark: #1A1A2E;
    --darker: #0F0F1B;
    --light: #FFFFFF;
    --gray: #EDEDED;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --neon-glow: 0 0 10px rgba(0, 209, 178, 0.8);
    --text-glow: 0 0 8px rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--light);
    line-height: 1.6;
    background-color: var(--darker);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 209, 178, 0.1) 0%, transparent 20%);
    overflow-x: hidden;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background-color: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--secondary);
    text-shadow: var(--text-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 102, 255, 0.6);
}

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #00B39D);
    box-shadow: 0 4px 15px rgba(0, 209, 178, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 7px 20px rgba(0, 209, 178, 0.6);
}

.btn i {
    margin-right: 8px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero {
        height: calc(100vh - 70px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 60px);
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vh - 50px);
        min-height: 350px;
    }
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 15, 27, 0.95));
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 209, 178, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 15%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #FF5A5F;
    top: 50%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    color: var(--light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.section-title p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 209, 178, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 25px;
    text-shadow: var(--neon-glow);
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light);
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.how-it-works {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0, 209, 178, 0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.step {
    flex: 0 0 calc(33.333% - 40px);
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 209, 178, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 15px;
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--light);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.properties {
    background: var(--darker);
    position: relative;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.property-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.property-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.property-details {
    padding: 25px;
}

.property-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--light);
}

.property-location {
    display: flex;
    align-items: center;
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 14px;
}

.property-location i {
    margin-right: 8px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.feature-item {
    text-align: center;
}

.feature-item i {
    display: block;
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-rating-booking {
    font-size: 20px;
    font-weight: 700;
    color: var(--light);
}

.property-rating-booking span {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.aboutus {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    display: none;
    transition: all 0.4s;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--light);
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid var(--secondary);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light);
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    background-color: var(--glass);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.slider-dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
    box-shadow: var(--neon-glow);
}

.contact {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255, 255, 255, 0.03)" d="M0,100 L100,100 L100,0 Q50,20 0,0 Z"></path></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    color: var(--light);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-column ul li a i {
    margin-right: 10px;
    color: var(--secondary);
    font-size: 12px;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, var(--dark), var(--darker));
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--secondary);
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

.modal h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--light);
    text-align: center;
}

/* ΒΕΛΤΙΩΜΕΝΟ MOBILE MENU - ΑΠΛΟ */
.mobile-menu-btn {
    display: none; /* Κρυμμένο σε PC */
}

/* Εμφάνιση μόνο σε tablets και mobile */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex; /* Εμφανίζεται */
        background: none;
        border: none;
        color: var(--light);
        font-size: 28px; /* Μεγαλύτερο μέγεθος */
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-btn:hover {
        color: var(--secondary);
        transform: none; /* Χωρίς rotation */
        text-shadow: 0 0 10px rgba(0, 209, 178, 0.5);
    }

    /* Κρύβουμε τα desktop nav links σε mobile */
    .nav-links {
        display: none;
    }
}

/* Desktop navigation - visible only on PC */
@media (min-width: 993px) {
    .nav-links {
        display: flex !important; /* Εξαναγκάζει την εμφάνιση */
    }
    
    .mobile-menu-btn {
        display: none !important; /* Εξαναγκάζει την απόκρυψη */
    }
}

/* MOBILE MENU DESIGN */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.98), 
        rgba(15, 15, 27, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(0, 209, 178, 0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(0, 102, 255, 0.1), 
        transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.mobile-menu.active {
    right: 0;
}

.close-mobile-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    font-size: 22px;
    cursor: pointer;
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    transform: rotate(-90deg);
    box-shadow: 0 0 20px rgba(0, 209, 178, 0.4);
}

.mobile-menu-header {
    padding: 0 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mobile-menu-logo img {
    width: 40px;
    height: 40px;
}

.mobile-menu-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu .nav-links li {
    list-style: none;
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.mobile-menu.active .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .nav-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu .nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu .nav-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 209, 178, 0.1), 
        transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu .nav-links li a:hover,
.mobile-menu .nav-links li a:focus {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    padding-left: 30px;
    transform: translateX(5px);
}

.mobile-menu .nav-links li a:hover::before,
.mobile-menu .nav-links li a:focus::before {
    transform: translateX(0);
}

.mobile-menu .nav-links li a:hover::after,
.mobile-menu .nav-links li a:focus::after {
    transform: translateX(0);
}

.mobile-menu .nav-links li a i {
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.mobile-menu .nav-links li a:hover i,
.mobile-menu .nav-links li a:focus i {
    color: var(--secondary);
    transform: scale(1.1);
}

.mobile-menu-footer {
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-menu-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mobile-menu-contact a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 15px;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-menu-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 209, 178, 0.4);
}

/* Overlay improvements */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.mobile-menu.active {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu:not(.active) {
    animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Active state indicator */
.mobile-menu .nav-links li a.active {
    color: var(--secondary);
    background: rgba(0, 209, 178, 0.1);
}

.mobile-menu .nav-links li a.active::before {
    transform: translateX(0);
}

.mobile-menu .nav-links li a.active i {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .step:last-child {
        flex: 0 0 100%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        flex: 0 0 100%;
    }
    
    .testimonial-text {
        font-size: 18px;
        padding-left: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    /* Enhance for smaller screens */
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu .nav-links li a {
        padding: 18px 20px;
        font-size: 17px;
    }
    
    .mobile-menu-header {
        padding: 0 25px 15px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .feature {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}

.social-links a {
    text-decoration: none;
}

/* Υπηρεσίες */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-shadow: var(--neon-glow);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--light);
}

.service-box p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.show-property {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Νέο styling για ratings */
.property-ratings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 35px;
    margin-left: 35px;
}

.rating-logo {
    font-size: 18px;
    color: #003580;
}

.google-logo {
    color: #4285F4;
}

.booking-logo {
    color: #003580;
    width: 24px;
    height: auto;
    border-radius: 5px;
}

.rating-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
}

.rating-value span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

/* Hero Improvements */
.hero-badge {
    background: rgba(0, 209, 178, 0.2);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid var(--secondary);
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--light);
    color: var(--darker);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-desc {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Για κινητά */
@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 15px;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Εξασφάλιση ότι τα sections ξεκινούν χωρίς προβλήματα */
section {
    position: relative;
    padding-top: 1px;
    margin-top: -1px;
}

/* Ειδικά για τα sections με id */
section[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 70px;
    }
}

/* Προσθήκη αυτών στο style.css */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-top: 40px;
}

/* Αν θέλεις διαφορετική απόσταση για κάθε section: */
#services .section-title {
    padding-top: 50px;
}

#how-it-works .section-title {
    padding-top: 40px;
}

#properties .section-title {
    padding-top: 60px;
}

#aboutus .section-title,
#contact .section-title {
    padding-top: 50px;
}

/* style.css */
.mobile-cta-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0 10px;
}

.mobile-cta-btn {
    flex: 1; /* Τα κουμπιά θα έχουν ίσο πλάτος */
    padding: 12px 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 12px;
}

/* Προσαρμογή του footer στο mobile menu */
.mobile-menu-footer {
    padding: 20px 10px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

/* style.css */

.more-services {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease; /* Ίδιο εφέ με τα υπόλοιπα στοιχεία */
}

/* Όταν ενεργοποιείται */
.more-services.active {
    display: contents; /* Διατηρεί το grid */
}

/* Εφαρμογή του εφέ στα εσωτερικά κουτιά μόλις μπει η κλάση active */
.more-services.active .service-box {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Κλάση για να εξαφανιστεί το κουμπί */
.hide-btn {
    display: none !important;
}

/* style.css */

/* --- Ρυθμίσεις για Υπολογιστή (Desktop) --- */
@media (min-width: 769px) {
    /* Κρύβουμε το container των επιπλέον υπηρεσιών στο desktop */
    .more-services {
        display: none;
    }

    /* Μόνο όταν πατηθεί το κουμπί */
    .more-services.active {
        display: contents; /* Επαναφέρει το grid για να μπουν στη σειρά τους */
    }
}

/* --- Ρυθμίσεις για Κινητό (Mobile) --- */
@media (max-width: 768px) {
    /* Κρύβουμε όλο το container */
    .more-services {
        display: none;
    }

    /* Η 4η υπηρεσία (που είναι μέσα στο more-services) θα κρυφτεί μαζί με όλο το group */
    .more-services.active {
        display: contents;
    }
}

/* Κοινό animation για όλες τις συσκευές όταν πατιέται το κουμπί */
.more-services.active .service-box {
    animation: fadeInUp 0.6s ease forwards;
}

/* style.css */

/* Εξασφάλιση ότι το πρώτο section (Hero) έχει το σωστό padding στην κορυφή */
#header + section, 
section:first-of-type {
    padding-top: 100px; /* Προσαρμόστε το ανάλογα με το ύψος του header σας */
}

/* Ειδική ρύθμιση για iPhone SE και μικρά κινητά (έως 375px πλάτος) */
@media screen and (max-width: 375px) {
    #header + section, 
    section:first-of-type {
        padding-top: 80px; /* Λίγο λιγότερο για μικρές οθόνες */
    }
    
    .hero-content {
        margin-top: 20px; /* Δίνει έξτρα χώρο στο περιεχόμενο αν χρειάζεται */
    }
}

/* Διόρθωση για το "Safe Area" του iOS (σημαντικό για iPhone) */
body {
    padding-top: env(safe-area-inset-top);
}

/* style.css */

.footer-bottom {
    display: flex;
    justify-content: space-between; /* Αριστερά - Δεξιά σε Desktop */
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-copyright p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-link {
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.legal-link:hover {
    opacity: 1;
}

.legal-separator {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* --- Ρυθμίσεις για κινητά --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse; /* Αντιστρέφει τη σειρά: Links πάνω, Copyright κάτω */
        gap: 15px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        width: 100%;
    }
}

/* style.css */

/* Κεντρικό container του footer */
.footer-content {
    display: flex;
    justify-content: space-between; /* Σπρώχνει τις στήλες στα άκρα (αριστερά-δεξιά) */
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

/* Ρυθμίσεις για την αριστερή στήλη */
.footer-column.branding {
    max-width: 450px;
    text-align: left;
}

/* Ρυθμίσεις για τη δεξιά στήλη (Επικοινωνία) */
.footer-column.contact-info {
    text-align: left; /* Στο desktop μένει αριστερά το κείμενο μέσα στη στήλη */
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    color: var(--secondary);
    width: 20px;
}

/* --- Ρυθμίσεις για Κινητά (Mobile) --- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Οι στήλες μπαίνουν η μία κάτω από την άλλη */
        align-items: left;    /* Στοίχιση των στηλών στο κέντρο */
        text-align: left;     /* Στοίχιση κειμένου στο κέντρο */
    }

    .footer-column.branding, 
    .footer-column.contact-info {
        max-width: 100%;
        text-align: left;     /* Κεντράρισμα περιεχομένου στήλης */
    }

    .contact-list li {
        justify-content: left; /* Κεντράρισμα των εικονιδίων/κειμένου στην λίστα */
    }

    .social-links {
        justify-content: left; /* Κεντράρισμα των social icons */
    }
}

/* style.css */

.footer-decorator {
    flex: 1;
    height: 180px; /* Αυξημένο ύψος για να ευθυγραμμιστεί με τις στήλες */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* Το κείμενο που κινείται */
.moving-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--light);
    text-shadow: var(--neon-glow);
    white-space: nowrap;
    z-index: 2;
    opacity: 0.6;
    animation: textFloat 10s ease-in-out infinite;
}

/* Η πλούσια πλεξούδα με πολλές γραμμές */
.footer-decorator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Πολλαπλές κυματιστές γραμμές σε διαφορετικά ύψη (SVG pattern) */
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='100' viewBox='0 0 200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q 50 70, 100 20 T 200 20' fill='none' stroke='%2300D1B2' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M0 50 Q 50 0, 100 50 T 200 50' fill='none' stroke='%230066FF' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M0 80 Q 50 30, 100 80 T 200 80' fill='none' stroke='%2300D1B2' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M0 50 Q 50 100, 100 50 T 200 50' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 250px 100%;
    animation: braidMove 15s linear infinite;
    z-index: 1;
}

/* Animation για την κίνηση των γραμμών */
@keyframes braidMove {
    from { background-position: 0 0; }
    to { background-position: 1000px 0; }
}

/* Animation για το κείμενο (πάνω-κάτω "floating" εφέ) */
@keyframes textFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 0.8; }
}

/* Mobile: Κρύβουμε όλο το εφέ για να μην μπερδεύεται με το κείμενο */
@media (max-width: 768px) {
    .footer-decorator {
        display: none;
    }
}

/* Στυλ για τα νέα κουμπιά στα καταλύματα */
.property-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.btn-property {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-website {
    background: var(--glass);
    color: var(--light);
    border: 1px solid var(--glass-border);
}

.btn-website:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-booking {
    background: #003580; /* Το χαρακτηριστικό χρώμα της Booking */
    color: white;
    border: 1px solid #003580;
}

.btn-booking img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 2px;
}

.btn-booking:hover {
    background: #0048ad;
    transform: translateY(-2px);
}

.btn-property i {
    margin-right: 8px;
}

/* style.css */
.property-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--light);
    
    /* Ευθυγράμμιση */
    height: 3.2em;            /* Κρατάει σταθερό ύψος για 2 σειρές */
    line-height: 1.6em;       /* Ορίζει το ύψος της κάθε σειράς */
    display: block;           /* Επιστροφή σε block */
    overflow: hidden;         /* Κρύβει ό,τι περισσεύει */
}

/* style.css */
.property-card {
    /* ... υπάρχοντα στυλ ... */
    display: flex;
    flex-direction: column;
    height: 100%; /* Για να έχουν όλες οι κάρτες το ίδιο ύψος στο grid */
}

.property-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Αναγκάζει το div να γεμίσει τον κενό χώρο */
}

.property-footer {
    margin-top: auto; /* Σπρώχνει τη βαθμολογία και τα κουμπιά στο κάτω μέρος */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-circle {
    position: relative;
    width: 200px;
    height: 200px;
    animation: rotate 10s linear infinite;
}

.loader-circle svg {
    width: 100%;
    height: 100%;
}

.loader-circle text {
    fill: var(--secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.inner-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--light);
    opacity: 0;
    white-space: nowrap;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Εφέ όταν τελειώνει το φόρτωμα */
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

#preloader.finish-anim .loader-circle {
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

#preloader.finish-anim .loader-text {
    opacity: 1;
    letter-spacing: 8px;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Αποτροπή scroll όσο φορτώνει */
body.loading {
    overflow: hidden;
}

/* Προσαρμογή του loader για κινητά */
@media (max-width: 480px) {
    .loader-text {
        font-size: 22px; /* Μικρότερο μέγεθος για να χωράει καλύτερα */
        display: flex;
        flex-direction: column; /* Η μία λέξη κάτω από την άλλη */
        align-items: center;
        text-align: center;
        line-height: 1.2;
        letter-spacing: 4px; /* Λίγο μικρότερο κενό ανάμεσα στα γράμματα */
    }

    /* Προαιρετικά, μειώνουμε λίγο και τον κύκλο για να μην πιάνει όλη την οθόνη */
    .loader-circle {
        width: 160px;
        height: 160px;
    }
    
    /* Ρύθμιση του animation για το κείμενο στα κινητά */
    #preloader.finish-anim .loader-text {
        transform: translate(-50%, -50%) scale(1.1); /* Λιγότερο έντονο zoom για να μην βγαίνει εκτός οθόνης */
    }
}

/* Custom Checkbox Style */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s;
}

.checkbox-container:hover input ~ .checkmark {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: var(--neon-glow);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--secondary);
    text-decoration: none;
    margin-left: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.checkbox-container a:hover {
    text-shadow: var(--neon-glow);
    text-decoration: underline;
}

/* Στυλ για όταν το checkbox ΔΕΝ είναι τσεκαρισμένο και έχει γίνει προσπάθεια υποβολής */
.checkbox-container input:invalid ~ .checkmark {
    border: 2px solid #ff4d4d; /* Κόκκινο χρώμα για προειδοποίηση */
    box-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
}

/* Επαναφορά του στυλ όταν τσεκαριστεί */
.checkbox-container input:checked ~ .checkmark {
    border-color: var(--secondary);
    background-color: var(--secondary);
    box-shadow: var(--neon-glow);
}

/* Προαιρετικό: Προσθήκη αστερίσκου (*) δίπλα στο κείμενο */
.checkbox-container::after {
    content: " *";
    color: #ff4d4d;
    margin-left: 4px;
    font-weight: bold;
}

/* Απόκρυψη του κουμπιού "Δείτε Περισσότερα" */
#loadMoreBtn, .load-more-container {
    display: none !important;
}

/* Στοίχιση στο κέντρο για κινητά στην ενότητα Σχετικά με Εμάς */
@media (max-width: 768px) {
    .aboutus .section-title,
    .aboutus .testimonial-text,
    .aboutus .testimonial-author {
        text-align: center;
        justify-content: center;
    }

    .aboutus .testimonial-text {
        padding-left: 0; /* Αφαίρεση του padding για σωστό κεντράρισμα */
    }

    .aboutus .testimonial-text::before {
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
    }
}

/* Για μεγάλες οθόνες: Στοίχιση δεξιά */
.priority-phrase {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--secondary);
    margin-top: 10px;
}

/* Για κινητά: Επιστροφή στο κέντρο */
@media (max-width: 768px) {
    .priority-phrase {
        text-align: center;
    }
}