/* ===== MAIN Ενοποιημένο CSS Περιλαμβάνει όλα τα στυλ από όλες τις σελίδες ===== */
/* SEARCH IFRAME STYLING Εφέ Gradient φόντο + neon μπλε περίγραμμα (box-shadow με spread 1px) */
.search-iframe-container {
    display: none;
    margin-top: 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1522 100%);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 233, 255, 0.2);
    transition: all 0.3s ease;
}
.search-iframe-container:hover {
    box-shadow: 0 15px 40px rgba(0, 233, 255, 0.2), 0 0 0 1px rgba(0, 233, 255, 0.5);
}
.search-iframe-header {
    background: #1b2636;
    border-bottom: 1px solid #00eaff40;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}
.search-iframe-header span {
    color: #00eaff;
    font-weight: bold;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 1px;
}
.close-iframe-btn {
    background: none;
    border: none;
    color: #00eaff;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-iframe-btn:hover {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    transform: scale(1.1);
}
.search-iframe {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 0 0 12px 12px;
    background: white;
}
/* Responsive: Στα κινητά το ύψος μειώνεται από 550px σε 400px */
@media (max-width: 768px) {
    .search-iframe {
        height: 400px;
    }    
    .search-iframe-container {
        border-radius: 12px;
        padding: 4px;
        margin-top: 20px;
        margin-bottom: 20px;
    }    
    .search-popup-header h3 {
        font-size: 1rem;
    }    
    .search-popup-buttons button {
        padding: 8px;
        font-size: 14px;
    }
}

/* BASICS & RESET  Σκοπός: Καθολικό reset - εξαλείφει τις προεπιλογές των browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Σκούρο gradient φόντο (από σκούρο μπλε-πράσινο σε γκριζομπλε). Καλό contrast για ανάγνωση */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    line-height: 1.6;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    background: #1b2636;
    color: #00eaff;
    max-width: fit-content;  /* Το μενού παίρνει μόνο όσο χώρο χρειάζεται */
    margin: 0 0 0 auto;      /* Σπρώχνει το μενού δεξιά-τεχνική που τοποθετεί το navbar στην πάνω δεξιά γωνία */
    border-radius: 12px;
}
.nav-left {
    display: flex;
    gap: 20px;
}
.nav-item {
    color: #d8dee9;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.nav-item:hover {
    background: #3d4b61;
    color: white;
}
/* Υποδεικνύει ποια σελίδα είναι ενεργή */
.nav-item.active {
    background: #4a5568;
    color: white;
}
.nav-right {
    display: flex;
    gap: 10px;
}
.search-box {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #e5e7eb;
}
.search-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    background: #e5e7eb;
    cursor: pointer;
}

/* LAYOUT & HEADER Κεντρικό container που περιορίζει το πλάτος και κεντράρει όλο το περιεχόμενο */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
}
.header {
    display: flex;
    align-items: center;
    justify-content: center;   /* Λογότυπο + τίτλος στο κέντρο */
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.header img {
    width: 160px;
    height: auto;
    margin-bottom: 5px;
}
.header h1 {
    font-size: 52px;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 233, 255, 0.5); /* Το text-shadow δίνει neon εφέ */
}
h2 {
    font-weight: normal;
    color: #00d9ff;
    margin-bottom: 20px;
    margin-top: -10px;
    letter-spacing: 1px;
}
/* SOUNDWAVE ANIMATION - Δημιουργεί 9 μπάρες σαν μετρητής ήχου, Διαφορετική διάρκεια σε κάθε span για τυχαία κίνηση */
.soundwave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 30px;
    margin: 20px 0;
}
.soundwave span {
    width: 4px;
    background: linear-gradient(#00eaff, #00a6ff);
    border-radius: 3px;
    animation: equalize 2s infinite ease-in-out;
}
.soundwave span:nth-child(1) { animation-duration: 0.9s; }
.soundwave span:nth-child(2) { animation-duration: 0.7s; }
.soundwave span:nth-child(3) { animation-duration: 1.1s; }
.soundwave span:nth-child(4) { animation-duration: 0.8s; }
.soundwave span:nth-child(5) { animation-duration: 1.2s; }
.soundwave span:nth-child(6) { animation-duration: 0.75s; }
.soundwave span:nth-child(7) { animation-duration: 1.05s; }
.soundwave span:nth-child(8) { animation-duration: 0.85s; }
.soundwave span:nth-child(9) { animation-duration: 0.95s; }
@keyframes equalize {      /* Το animation αλλάζει ύψος δημιουργώντας την ψευδαίσθηση ήχου */
    0% { height: 4px; }
    20% { height: 12px; }
    40% { height: 26px; }
    60% { height: 16px; }
    80% { height: 30px; }
    100% { height: 6px; }
}

/* DESCRIPTION & BUTTONS Τα κουμπιά στην αρχική σελίδα, Εφέ: Glassmorphism, hover lift, active state */
.description {
    font-size: 18px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.buttons a {
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(0, 195, 255, 0.2);
    border: 1px solid rgba(0, 233, 255, 0.4);
    color: #00eaff;
    font-weight: bold;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.buttons a:hover {
    background: #00eaff;
    color: #1b2636;
    border-color: #00eaff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 233, 255, 0.3);
}
.buttons a.active {           /* 🟢 Ενεργό κουμπί (πατημένο) */
    background: #00eaff;
    color: #1b2636;
    border-color: #00eaff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 233, 255, 0.5);
    cursor: default;
}

/* CONTACT SECTION - Στυλ για τα στοιχεία επικοινωνίας τηλέφωνο, email, διεύθυνση */
.contact-section {
    background: rgba(10, 20, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 233, 255, 0.2);
    border-radius: 30px;
    padding: 40px 30px;
}
.contact {
    font-size: 16px;
    line-height: 2;
    color: #ccc;
    margin-bottom: 0;
}
.contact a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}

/* FOOTER - Διαχωριστική γραμμή με το signature μπλε χρώμα */
.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 233, 255, 0.2);
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* SERVICES SECTION - Responsive grid για τις υπηρεσίες. Αυτόματα δημιουργεί στήλες που προσαρμόζονται */
.services-header {
    margin-bottom: 50px;
}
.services-header p {
    color: #00eaff;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}
.service-card {
    background: rgba(10, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 233, 255, 0.15);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Δημιουργεί ελαστικό, φυσικό animation */
    position: relative;
    overflow: hidden;   /* Κρύβει το εφέ φωτός που περνάει */
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 233, 255, 0.1), transparent);
    transition: left 0.7s ease;
}
.service-card:hover::before {    /* Εφέ "sweeping light" που περνάει από το card στο hover */
    left: 100%;                  /* Η γραμμή φωτός διασχίζει το card */
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: #00eaff;
    box-shadow: 0 20px 40px rgba(0, 233, 255, 0.25);
    background: rgba(15, 30, 45, 0.8);
}
.service-card img {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(1) contrast(1.2);
    transition: all 0.3s ease;
}
.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0, 233, 255, 0.5));
}
.service-card h3 {
    color: #00eaff;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}
.service-card p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}
.service-features li {
    color: #ddd;
    font-size: 14px;
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid rgba(0, 233, 255, 0.1);
}
.service-features li::before {
    content: '✓';
    color: #00eaff;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}
.service-price {       /* Εφέ "sweeping light" που περνάει από το card στο hover */
    margin-top: 25px;
    font-size: 20px;
    color: white;
    background: linear-gradient(135deg, #00eaff, #00a6ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.service-price span {
    font-size: 14px;
    color: #888;
    -webkit-text-fill-color: #888;
}

/* CTA SECTION - Τμήμα "Κλείστε ραντεβού" με εντυπωσιακό κουμπί */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 233, 255, 0.1), rgba(0, 166, 255, 0.1));
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0 40px;
    border: 1px solid rgba(0, 233, 255, 0.3);
    backdrop-filter: blur(5px);
}
.cta-section h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}
.cta-section p {
    color: #00eaff;
    font-size: 18px;
    margin-bottom: 30px;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #00eaff, #00a6ff);
    color: #1b2636;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 233, 255, 0.4);
    color: white;
}
/* Στυλ για τα στατιστικά (χρόνια λειτουργίας, εγκαταστάσεις κλπ) */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 233, 255, 0.2);
    min-width: 150px;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #00eaff;
    margin-bottom: 5px;
}
.stat-label {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ===== BRANDS SHOWCASE ===== */
.brands-showcase {
    background: rgba(10, 20, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 233, 255, 0.2);
    border-radius: 30px;
    padding: 40px 30px;
    margin-bottom: 40px;
}

/* ===== CONTACT PAGE (Σελίδα επικοινωνίας) =====*/
.contact-page-header {
    margin-bottom: 50px;
}
.contact-page-header h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-page-header p {
    color: #00eaff;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}
.contact-info-card,
.contact-form-card {
    background: rgba(10, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 233, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    text-align: left;
}
.contact-info-card h3,
.contact-form-card h3 {
    color: #00eaff;
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.contact-info-card h3::after,    /* Δύο στήλες, αριστερά στοιχεία επικοινωνίας, δεξιά φόρμα */
.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00eaff, #00a6ff);
    border-radius: 3px;
}
.info-item {         /* Διακοσμητική γραμμή κάτω από κάθε τίτλο */
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.info-icon {        /* Κάθε στοιχείο επικοινωνίας έχει εικονίδιο σε κυκλικό φόντο */
    font-size: 28px;
    background: rgba(0, 233, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 233, 255, 0.3);
}
.info-text {
    flex: 1;
}
.info-text h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}
.info-text a,
.info-text p {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
}
.info-text a:hover {
    color: #00eaff;
}
.business-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 233, 255, 0.2);
}
.business-hours h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ccc;
}
.hours-row span:first-child {
    color: #aaa;
}
.hours-row span:last-child {
    color: #00eaff;
    font-weight: bold;
}

/* FORM STYLES (Φόρμα μηνύματος) Ημιδιάφανα πεδία που "ανάβουν" με glow όταν ο χρήστης εστιάζει */
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 15px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 233, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #00eaff;
    background: rgba(255, 255, 255, 0.08);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00eaff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 233, 255, 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {   /* Custom dropdown με προσαρμοσμένο βελάκι (αντί για το default του browser) */
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300eaff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}
.form-group option {
    background: #1b2636;
    color: white;
}
.submit-btn {
    background: linear-gradient(45deg, #00eaff, #00a6ff);
    color: #1b2636;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
}
.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 233, 255, 0.3);
    color: white;
}

/* MAP (Χάρτης) & SOCIAL LINKS - Κυκλικά κουμπιά social media με hover lift effect */
.map-container {
    margin: 40px 0;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(0, 233, 255, 0.2);
    background: rgba(10, 20, 30, 0.5);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}
.social-links {        /* ===== SOCIAL LINKS ===== */
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}
.social-link {
    width: 60px;
    height: 60px;
    background: rgba(10, 20, 30, 0.7);
    border: 1px solid rgba(0, 233, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00eaff;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #00eaff;
    color: #1b2636;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 233, 255, 0.3);
}

/* ===== MANUFACTURERS PAGE ===== */
.card-link {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #00eaff;
    color: #00eaff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.card-link:hover {
    background: #00eaff;
    color: #1b2636;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    margin-bottom: 40px;
}
.page-header h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}
.page-header p {
    color: #aaa;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* BACK LINK (Σύνδεσμος επιστροφής) & MESSAGES */
.back-link {
    display: inline-block;
    margin: 40px 0 20px;
    color: #00eaff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: #00f2fe;
    transform: translateX(-5px);
}
.back-link span {
    font-size: 20px;
    margin-right: 5px;
}
.success-message {          /* ===== SUCCESS MESSAGE ===== */
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}
.success-message.show {
    display: block;
}
#errorMessage {          /* ===== ERROR MESSAGE ===== */
    position: relative;
    cursor: pointer;
}
#errorMessage:hover::after {
    content: "👆 Πατήστε για καθαρισμό";
    position: absolute;
    bottom: 10%;           /* Κάτω από το μήνυμα */
    left: 53%;
    background: #f0f0f0;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
    white-space: nowrap;
    border: 1px solid #ccc;
}

/* IFRAME STYLING - ΕΝΙΑΙΟ ΣΤΥΛ, Κοινό container για όλα τα iframes, προϊόντα και αναζήτηση, Neon περίγραμμα που εντείνεται στο hover */
#iframeContainer,
#searchIframeContainer {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1522 100%);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 233, 255, 0.2);
    transition: all 0.3s ease;
}
/* Hover effect Κοινό για όλα τα iframes */
#iframeContainer:hover,
#searchIframeContainer:hover {
    box-shadow: 0 15px 40px rgba(0, 233, 255, 0.2), 0 0 0 1px rgba(0, 233, 255, 0.5);
}

/* RESPONSIVE DESIGN - Πλήρης προσαρμογή για tablet (768px) και κινητά (480px) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .header img {
        width: 150px;
    }
    .header h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .stats-container {
        gap: 20px;
    }
    .stat-item {
        min-width: 120px;
        padding: 15px 20px;
    }
    .navbar {
        flex-direction: column;
        gap: 5px;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
    .nav-left {
        flex-wrap: wrap;
        justify-content: left;
    }
    .nav-item {
    font-size: 16px;
    padding: 6px 8px;
    }
    .nav-right {
        width: 100%;
        justify-content: right;
    }
    .search-box {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 28px;
    }
    .buttons a {
        width: 100%;
        text-align: center;
    }
    .service-card {
        padding: 30px 15px;
    }
    .cta-section {
        padding: 30px 20px;
    }
    .cta-section h3 {
        font-size: 24px;
    }
}