/* Βασικές Ρυθμίσεις */
:root {
    --color-dark: #0f1626;
    --color-accent: #c48b4b;
    --color-text-gray: #5a6072;
    --color-light-bg: #fffcf9;
    --color-border: #eaeaea;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-light-bg);
    color: var(--color-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Ομαλό σκρολάρισμα σε όλη τη σελίδα */
html {
    scroll-behavior: smooth;
}

/* Αυτό δημιουργεί ένα "αόρατο κενό" πάνω από κάθε section όταν σκρολάρεις, 
   ώστε το περιεχόμενο να μην κρύβεται πίσω από το σταθερό navbar σου! 
*/
section {
    scroll-margin-top: 100px; 
}

/* Background Effects */
.background-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    z-index: -2;
}

.background-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 30%, rgba(245, 218, 189, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 90% 70%, rgba(245, 218, 189, 0.3) 0%, transparent 40%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* === Νέο CSS για το .navbar (Σχεδιασμός Κάψουλας) === */

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-dark {
    background-color: var(--color-dark);
    color: white;
}

.btn-dark:hover {
    background-color: #1a2540;
}

.btn-light {
    background-color: white;
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.btn-light:hover {
    border-color: #ccc;
    background-color: #fafafa;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    padding-top: 150px;
}

.badge {
    background-color: white;
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--color-text-gray);
    font-weight: 500;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    color: var(--color-accent);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-gray);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.arrow {
    font-size: 1.2rem;
    margin-left: 4px;
}

.play-icon {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* Bottom Industries */
.industries {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.separator {
    color: #d1d5db;
}

/* === Specialization Section === */
.specialization {
    padding: 100px 0; /* Επαναφορά στο αρχικό */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    
    /* Απαραίτητο για το full-width background trick */
    position: relative; 
    z-index: 1; 
}

/* Το full-width background που "βγαίνει" από το container */
.specialization::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Πιάνει το 100% του πλάτους της οθόνης */
    background-color: #f3f5f8; /* Το καθαρό λευκό χρώμα */
    z-index: -1; /* Μπαίνει πίσω από το κείμενο/κάρτες */
}

.section-badge {
    background-color: #f4f5f7; /* Ελαφρύ γκρι-μπλε χρώμα όπως στην εικόνα */
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--color-text-gray);
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
}

.section-title {
    font-size: 4rem; /* Ελαφρώς μικρότερο από τον κεντρικό τίτλο (4.5rem) */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.section-title .highlight {
    color: var(--color-accent); /* Το χρυσό χρώμα */
}

.section-desc {
    font-size: 1.15rem;
    color: var(--color-text-gray);
    max-width: 680px; /* Περιορίζουμε το πλάτος για να σπάει η γραμμή όπως στο design */
    line-height: 1.6;
}

/* === Service Card (Κάρτα Healthcare) === */
.service-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 28px; /* Μεγάλες καμπύλες όπως στην εικόνα */
    padding: 48px;
    margin-top: 60px;
    width: 100%;
    position: relative;
    overflow: hidden; /* Για να μην βγαίνει το glow έξω από την κάρτα */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); /* Διακριτική σκιά */
}

/* Το Gradient Glow πάνω δεξιά */
.card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top right, rgba(245, 218, 189, 0.3), transparent 60%);
    pointer-events: none; /* Για να μην εμποδίζει τα κλικ */
    z-index: 0;
}

.card-content {
    position: relative;
    z-index: 1; /* Πάνω από το glow */
}

/* Header Κάρτας (Εικονίδια & Ετικέτα) */
.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-icons {
    display: flex;
    gap: 12px;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-dark {
    background-color: var(--color-dark);
    color: white;
}

.icon-accent {
    background-color: #fff4ec; /* Πολύ ανοιχτό πορτοκαλί/χρυσό */
    color: var(--color-accent);
}

.card-category {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-gray);
}

/* Τίτλος & Περιγραφή */
.card-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.card-desc {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Στατιστικά (3 κουτάκια) */
.card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 750px;
}

.stat-box {
    background-color: #f8f9fb; /* Ελαφρύ γκρι/μπλε όπως στην εικόνα */
    border-radius: 20px;
    padding: 24px 32px;
    flex: 1; /* Μοιράζονται εξίσου τον χώρο */
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    font-weight: 500;
}

/* Σύνδεσμος (Link) */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.card-link:hover {
    opacity: 0.7;
}

.card-link svg {
    transition: transform 0.2s ease;
}

.card-link:hover svg {
    transform: translate(3px, -3px); /* Το βελάκι φεύγει λίγο πάνω δεξιά στο hover */
}

/* === Dark Theme Card (Hospitality) === */
.service-card.dark-theme {
    background-color: #121722; /* Το σκούρο μπλε/γκρι του screenshot */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Ελαφρύ περίγραμμα */
    margin-top: 30px; /* Απόσταση από την λευκή κάρτα */
    color: white;
}

/* Το Gradient Glow κάτω δεξιά στην σκούρα κάρτα */
.card-glow-dark {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at bottom right, rgba(196, 139, 75, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Παρακάμψεις (Overrides) χρωμάτων για τη σκούρα κάρτα */
.dark-theme .card-title {
    color: white;
}

.dark-theme .card-desc,
.dark-theme .card-category {
    color: #9ca3af;
}

.dark-theme .card-link {
    color: white;
    margin-top: 10px;
    display: inline-flex; /* Σιγουρεύουμε τη σωστή εμφάνιση */
}

/* Εικονίδια σκούρας κάρτας */
.icon-dark-bg {
    background-color: #1e2532;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* === Inner Banner (Τραπέζι No. 07) === */
.table-banner {
    /* Εφέ Glass/Gradient πάνω στο σκούρο φόντο */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 750px;
}

.table-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.table-label {
    font-size: 0.8rem;
    color: #9ca3af;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.table-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.qr-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 12px;
}

/* === Section 03: Healthcare Details === */
.healthcare-details {
    padding: 100px 0; /* Χώρος από το προηγούμενο section */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

/* Επαναχρησιμοποιούμε τις κλάσεις .section-badge, .section-title, .section-desc 
   που έχουν ήδη οριστεί στο CSS σου! */

/* Πλέγμα για τις κάρτες χαρακτηριστικών (Features) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 ίσες στήλες */
    gap: 32px; /* Κενό ανάμεσα στις κάρτες */
    margin-top: 50px;
    width: 100%;
}

/* Στυλ της κάθε μικρής κάρτας */
.feature-card {
    background-color: white; 
    border: 1px solid var(--color-border); 
    border-radius: 28px; 
    padding: 40px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Αφαιρούμε το transition και από το εικονίδιο για να αλλάζει χρώμα αμέσως */
.feature-icon {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: none;
}

.feature-card:hover .feature-icon {
    color: var(--color-accent);
    background-color: #fff4ec;
}

/* Το κυκλικό εικονίδιο */
.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #f4f5f7; /* Το ελαφρύ γκρι/μπλε της εικόνας */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 1.05rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* === Fade & Slide Animations === */

/* Έρχεται από ΔΕΞΙΑ προς τα αριστερά */
.slide-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Έρχεται από ΑΡΙΣΤΕΡΑ προς τα δεξιά (προαιρετικό, για ποικιλία) */
.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Η κλάση που μπαίνει με JS όταν σκρολάρεις και τα εμφανίζει */
.slide-right.active, 
.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Καθυστέρηση στις κάρτες του Grid για να εμφανίζονται σαν ντόμινο */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.6s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.7s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.8s; }

/* === Section 04: Hospitality Details === */
.hospitality-details {
    padding: 100px 0; /* Επαναφορά στο αρχικό */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    
    /* Απαραίτητο για το full-width background trick */
    position: relative; 
    z-index: 1; 
}

/* Το full-width background που "βγαίνει" από το container */
.hospitality-details::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw; /* Πιάνει το 100% του πλάτους της οθόνης */
    background-color: #f3f5f8; /* Το καθαρό λευκό χρώμα */
    z-index: -1; /* Μπαίνει πίσω από το κείμενο/κάρτες */
}

/* === Section 04: Pricing Cards === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Δύο ίσες στήλες */
    gap: 32px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%; /* Για να πιάνει όλο το πλάτος */
}

/* Η Κάρτα (Dark Theme) */
.pricing-card.dark-theme {
    background-color: #121722;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Εφέ λάμψης (Glow) */
.pricing-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(196, 139, 75, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.pricing-header, .pricing-content {
    position: relative;
    z-index: 1; /* Πάνω από το glow */
}

/* Header & Badges */
.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    background-color: #1e2532;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-badge {
    background-color: var(--color-accent);
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Titles */
.pricing-subtitle {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.pricing-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Κενό ανάμεσα στις γραμμές */
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d1d5db; /* Ανοιχτό γκρι */
    font-size: 1.05rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Full width button */
.btn-full {
    width: 100%;
    padding: 18px;
    font-size: 1.05rem;
}

/* Βασική Λευκή Κάρτα (Pricing) */
.pricing-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

/* Ειδικά στυλ για τη λευκή κάρτα */
.pricing-icon.light-icon {
    background-color: #f4f5f7; /* Απαλό γκρι */
    border: none;
    color: var(--color-dark);
}

.light-theme-title {
    color: var(--color-dark);
}

.light-theme-features li {
    color: var(--color-text-gray);
}

/* === Section 05: Call To Action (CTA) === */
/* === Section 05: Call To Action (CTA) === */
.cta-section {
    background-color: #f5e2cc; /* Κρατάμε το ζεστό ροζ/μπεζ για το κουτί */
    border-radius: 40px;
    padding: 100px 20px;
    margin-top: 120px;
    margin-bottom: 80px;
    position: relative;
    /* ΑΦΑΙΡΕΘΗΚΕ ΤΟ overflow: hidden; από εδώ για να απλωθεί το ::before */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    border: 1px solid var(--color-border);
    z-index: 1; /* Κρατάει το CTA μπροστά */
}

/* Μεταφέραμε το overflow εδώ για να μην χάσουμε τις καμπύλες στο grid */
.cta-background-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 40px; /* ΝΕΟ */
    overflow: hidden; /* ΝΕΟ */
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    z-index: -1;
}

.cta.background-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 10% 30%, rgba(245, 218, 189, 0.4) 0%, transparent 40%),
                radial-gradient(circle at 90% 70%, rgba(245, 218, 189, 0.3) 0%, transparent 40%);
    z-index: -1;
}

/* Το full-width background (όπως στο specialize) ΠΙΣΩ από το CTA */
.cta-section::before {
    content: "";
    position: absolute;
    /* Τραβάμε το background λίγο πάνω και κάτω για να καλύψει τα κενά (margins) */
    top: -80px; 
    bottom: -80px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background-color: #f3f5f8;
    z-index: -2; /* Μπαίνει στο απόλυτο βάθος πίσω από όλα */
}

.cta-content {
    position: relative;
    z-index: 1; /* Πάνω από το grid */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.cta-badge {
    background-color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--color-text-gray);
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-border);
}

.cta-badge-icon {
    color: var(--color-accent); /* Το χρυσό/καφέ χρώμα */
}

.cta-title {
    font-size: 4.5rem; /* Μεγάλος τίτλος */
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.cta-title .highlight {
    color: var(--color-accent);
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* === MAIN FOOTER === */
.main-footer {
    background-color: #0c111d; /* Πολύ σκούρο μπλε/μαύρο */
    color: #9ca3af;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    min-height: auto !important; /* Ακυρώνουμε το min-height: 100vh του container */
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Section */
.white-logo .logo-text {
    color: white;
}
.footer-bio {
    margin-top: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

/* Links & Columns */
.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* Socials & Contact */
.contact-col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-col a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #9ca3af;
    transition: transform 0.2s, color 0.2s;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.legal-links a {
    color: #6b7280;
    text-decoration: none;
}

.legal-links a:hover {
    color: #9ca3af;
}

/* === Section 05: Web Development (Bento Box Layout) === */
.webdev-bento {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 στήλες */
    gap: 24px;
    margin-top: 50px;
    width: 100%;
}

/* Η Βασική Bento Κάρτα */
.bento-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Μεγέθη Καρτών */
.bento-large {
    grid-column: span 2; /* Πιάνει 2 στήλες */
}

.bento-wide {
    grid-column: span 2; /* Πιάνει 2 στήλες */
}

/* Dark Theme για το μεγάλο κουτί */
.bento-card.dark-theme {
    background-color: #121722;
    color: white;
    border: 1px solid rgba(255,255,255,0.05);
}

.bento-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.dark-theme .bento-title {
    color: white;
}

.bento-desc {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    line-height: 1.5;
}

.dark-theme .bento-desc {
    color: #9ca3af;
}

/* --- ΓΡΑΦΙΚΑ ΣΤΟΙΧΕΙΑ (UI MOCKUPS) --- */

/* 1. Browser Mockup */
.browser-mockup {
    margin-top: 30px;
    background: #1e2532;
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    height: 160px;
}
.browser-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    gap: 8px;
}
.browser-header .dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-body { padding: 24px; }
.mockup-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 16px; }
.w-70 { width: 70%; }
.w-40 { width: 40%; }
.mockup-block { height: 48px; background: rgba(196,139,75,0.2); border-radius: 8px; border: 1px solid rgba(196,139,75,0.3); }

/* 2. Circular Chart (Speed) */
.speed-score {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.circular-chart {
    display: block;
    max-width: 120px;
    max-height: 120px;
}
.circle-bg {
    fill: none;
    stroke: #f4f5f7;
    stroke-width: 3.8;
}
.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: #10b981; /* Πράσινο χρώμα για τέλειο score */
    animation: progress 2s ease-out forwards;
}
.percentage {
    fill: var(--color-dark);
    font-family: inherit;
    font-weight: 800;
    font-size: 9px;
    text-anchor: middle;
}
@keyframes progress { 
    0% { stroke-dasharray: 0 100; } 
}

/* 3. Wide Flex & SEO Trend */
.bento-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 30px;
}
.bento-text {
    flex: 1.5;
}
.seo-trend {
    flex: 1;
    display: flex;
    justify-content: center;
}
.trend-line {
    width: 100%;
    filter: drop-shadow(0 8px 8px rgba(196,139,75,0.3)); /* Χρυσή σκιά κάτω από τη γραμμή */
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .industries {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem; /* Μικραίνουμε τον τίτλο για κινητά */
    }
    
    .section-desc {
        font-size: 1rem; /* Λίγο μικρότερο κείμενο */
    }
    
    .specialization {
        padding: 60px 0; /* Μικρότερο κενό πάνω-κάτω στα κινητά */
    }

    /* Προσθήκες για την Κάρτα στα κινητά */
    .service-card {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .card-title {
        font-size: 2rem;
    }

    .card-desc {
        font-size: 1rem;
    }

    .card-stats {
        flex-direction: column; /* Τα στατιστικά μπαίνουν το ένα κάτω από το άλλο */
        gap: 12px;
    }

    .stat-box {
        padding: 20px;
    }

    /* Responsive για το Table Banner */
    .table-banner {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .table-number {
        font-size: 1.6rem;
    }

    /* Responsive για το Healthcare Details Grid */
    .healthcare-details {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr; /* 1 στήλη στα κινητά */
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    /* Responsive για το Hospitality Details */
    .hospitality-details {
        padding: 60px 0;
    }

    /* Responsive για Pricing Cards */
    .pricing-card.dark-theme {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .pricing-title {
        font-size: 2.2rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        gap: 12px;
    }

    .pricing-grid {
            grid-template-columns: 1fr; /* Η μία κάτω από την άλλη στα κινητά */
    }
        
    .pricing-card {
        padding: 32px 24px;
    }

    /* Responsive για το CTA Section */
    .cta-section {
        padding: 60px 20px;
        border-radius: 20px;
        margin-top: 80px;
        margin-bottom: 40px;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-desc {
        font-size: 1rem;
    }

    /* Responsive Contact Page */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important; 
    }

    /* Διασφάλιση ότι η φόρμα δεν ξεχειλίζει */
    .contact-form-container {
        padding: 25px 15px !important; 
        width: 100% !important; 
        max-width: 100% !important; 
    }

    /* Επιβολή πλήρους πλάτους σε όλα τα στοιχεία εισαγωγής */
    .input-group input, 
    .input-group textarea, 
    .custom-dropdown,
    .form-row {
        width: 100% !important;
        max-width: 100% !important;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr; /* Τα input το ένα κάτω από το άλλο */
        gap: 20px;
    }

    .contact-title {
        font-size: 1.8rem !important; /* Λίγο μικρότερο μέγεθος για να μην "σπάει" σε πολλές γραμμές */
        text-align: center;
        word-wrap: break-word; /* Σπάει τις πολύ μεγάλες λέξεις */
        overflow-wrap: break-word;
    }

    /* Responsive Bento Grid */
    .webdev-bento {
        padding: 60px 0;
    }
    
    .bento-grid {
        grid-template-columns: 1fr; /* Όλα σε 1 στήλη στα κινητά */
        gap: 20px;
    }

    .bento-large, .bento-wide {
        grid-column: span 1; /* Ακυρώνουμε το span 2 */
    }

    .bento-card {
        padding: 30px 24px;
    }

    .bento-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .seo-trend {
        width: 100%;
        margin-top: 20px;
        justify-content: flex-start;
    }
}


/* ========================================= */
/* === CONTACT PAGE STYLES === */
/* ========================================= */

.contact-wrapper {
    padding-top: 180px; /* Χώρος για το navbar */
    padding-bottom: 100px;
    min-height: 80vh;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Αριστερή πλευρά (Κείμενα & Info) */
.contact-title {
    font-size: 4rem;
    text-align: left;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #fdf5ea;
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-card h4 {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.method-card a {
    color: var(--color-dark);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.method-card a:hover {
    color: var(--color-accent);
}

/* Δεξιά πλευρά (Φόρμα Glassmorphism) */
.contact-form-container {
    background: rgba(255, 255, 255, 0.6); /* Ημιδιαφανές λευκό */
    backdrop-filter: blur(20px); /* Το εφέ θολώματος */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-dark);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Floating Labels Magic */
.input-group {
    position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 20px 20px 12px 20px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group select {
    padding: 16px 20px;
    color: var(--color-text-gray);
    appearance: none; /* Βγάζει το default βελάκι για να είναι πιο clean */
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(196, 139, 75, 0.1);
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-group textarea ~ label {
    top: 20px;
    transform: none;
}

/* Όταν το πεδίο είναι focus ή έχει κείμενο μέσα, το label πάει πάνω */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent);
}

.submit-btn {
    margin-top: 10px;
    border-radius: 16px;
}

/* === Custom Dropdown Styling === */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-size: 1rem;
    color: var(--color-text-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s, border-radius 0.2s;
}

/* Όταν το dropdown είναι ανοιχτό */
.dropdown-selected.open {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(196, 139, 75, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Το βελάκι γυρίζει ομαλά */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-selected.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Χρώμα όταν έχει επιλεγεί κάτι */
.dropdown-selected .selected-text.active {
    color: var(--color-dark);
    font-weight: 500;
}

/* Το μενού με τις επιλογές */
.dropdown-options {
    position: absolute;
    top: 100%;
    left: -1px; /* Ευθυγράμμιση με το border */
    right: -1px;
    background: white;
    border: 1px solid var(--color-accent);
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    
    /* Animation Εμφάνισης */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.dropdown-selected.open + .dropdown-options {
    max-height: 250px; /* Αρκετό ύψος για να φανούν οι επιλογές */
    opacity: 1;
}

/* Η κάθε επιλογή (li) */
.dropdown-options li {
    padding: 14px 20px;
    color: var(--color-text-gray);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-size: 0.95rem;
}

.dropdown-options li:hover {
    background-color: #fdf5ea; /* Απαλό μπεζ στο hover */
    color: var(--color-accent);
    font-weight: 500;
}

.dropdown-options li:last-child {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

/* === Form Validation Error Styles === */
.input-group input.error,
.input-group textarea.error,
.dropdown-selected.error {
    border-color: #ef4444; /* Έντονο κόκκινο */
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

/* Αφαιρούμε το κόκκινο όταν κάνει focus ξανά */
.input-group input.error:focus,
.input-group textarea.error:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(196, 139, 75, 0.1);
}

/* === Navbar: Σχεδιασμός Κάψουλας === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 30px;
    border-radius: 999px; /* Κάψουλα */
    background: rgba(255, 252, 249, 0.85); /* Glassmorphism */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scrolled State */
.navbar.scrolled {
    padding: 8px 30px;
    background: rgba(255, 252, 249, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* Mobile Menu Toggle (Hamburger) */
.hamburger {
    display: none; /* Κρυφό σε Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 10px;
    transition: 0.3s;
}

/* Visibility Utilities */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* === Responsive Navbar (Mobile) === */
@media (max-width: 992px) {
    .hamburger { display: flex; }

    .desktop-only { display: none; }
    .mobile-only { display: block; width: 100%; margin-top: 10px; }

    .nav-links {
        display: flex !important; /* Προσθήκη αυτού για να "σκοτώσει" τυχόν παλιά display: none */
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: rgba(255, 252, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 20px;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        gap: 25px;
        text-align: center;
        
        /* Animation για το άνοιγμα */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}


/* === MASTER MOBILE REALIGNMENT === */
@media (max-width: 768px) {
    
    /* 1. Εξασφαλίζουμε ότι τίποτα δεν "σπρώχνει" την οθόνη δεξιά */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* 2. Ενιαίο padding για τον κεντρικό container */
    .container {
        padding: 0 20px !important; /* Λίγο περισσότερος χώρος στις άκρες */
        width: 100% !important;
        overflow: hidden;
    }

    /* 3. Στοίχιση όλων των τίτλων και περιγραφών στο κέντρο για ισορροπία */
    .specialization, 
    .healthcare-details, 
    .hospitality-details, 
    .webdev-bento,
    .contact-wrapper {
        align-items: center !important; /* Κεντράρισμα των πάντων */
        text-align: center !important;
        padding: 60px 0 !important;
    }

    .section-desc, .hero-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    /* 4. Διόρθωση όλων των καρτών (Service, Feature, Bento) */
    .service-card, 
    .feature-card, 
    .bento-card, 
    .pricing-card, 
    .method-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important; /* Για να μην προστίθεται το padding στο πλάτος */
    }

    /* 5. Διόρθωση των Grids */
    .features-grid, 
    .pricing-grid, 
    .bento-grid, 
    .contact-layout {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 20px !important;
    }

    /* 6. Διόρθωση της Φόρμας */
    .contact-form-container {
        padding: 30px 20px !important;
        border-radius: 24px !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* 7. Διόρθωση των στατιστικών (για να μην βγαίνουν έξω) */
    .card-stats {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .stat-box {
        width: 100% !important;
    }
}

/* === ΣΥΜΜΑΖΕΜΑ ΤΟΥ INFO SECTION (ΚΙΝΗΤΑ) - EXTRA COMPACT === */
@media (max-width: 768px) {
    
    /* === ΤΕΛΕΙΟΠΟΙΗΣΗ CONTACT PAGE (MOBILE) === */

    /* 1. Δίνουμε "αναπνοή" από το Navbar (ώστε να μην κρύβεται ο τίτλος) */
    .contact-layout { /* Ή .contact-wrapper ανάλογα πώς έχεις ονομάσει το κεντρικό div */
        margin-top: 40px !important; 
    }

    /* 2. Τέλεια Στοίχιση στο Κέντρο για Τίτλο & Περιγραφή */
    .contact-title {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        font-size: 1.8rem !important; /* Ελαφρώς μικρότερο για να χωράει όμορφα */
    }

    .contact-subtitle {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto 24px auto !important;
    }

    /* 3. Διόρθωση στις Κάρτες (Εικονίδιο αριστερά, κείμενο αριστερά δίπλα του) */
    .method-card a {
        font-size: 0.85rem !important; /* Ελαφρώς μικρότερο μέγεθος για να χωράει όλο το email */
        white-space: nowrap !important; /* ΑΠΑΓΟΡΕΥΕΙ ρητά το "σπάσιμο" λέξεων στη μέση */
        word-break: normal !important; /* Ακυρώνει προηγούμενους κανόνες που έκοβαν τα γράμματα */
        letter-spacing: -0.2px !important; /* Πολύ διακριτικό μάζεμα στα κενά των γραμμάτων */
    }

    /* Το div που περιέχει τα κείμενα μέσα στην κάρτα */
    .method-card > div:not(.method-icon) {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Ευθυγράμμιση κειμένων αριστερά */
        width: 100% !important;
    }

    .method-card h4 {
        margin-bottom: 4px !important;
        width: 100% !important;
        text-align: left !important;
    }

    /* Ευθυγράμμιση Λίστας Τηλεφώνων */
    .phone-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Στοίχιση αριστερά */
        width: 100% !important;
        gap: 6px !important;
    }

    .phone-list a {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important; /* Εξασφαλίζει ότι το νούμερο θα μείνει δίπλα στην ταμπέλα */
        gap: 8px !important;
    }

    .phone-label {
        white-space: nowrap !important; /* Για να μην κοπεί ποτέ το "Marketing" */
        min-width: 65px !important; /* Κρατάει σταθερό πλάτος ώστε τα δύο νούμερα να είναι τέλεια στοιχισμένα από κάτω */
        font-size: 0.7rem !important;
    }
}

/* === ΤΕΛΕΙΑ ΣΤΟΙΧΙΣΗ: ΕΙΚΟΝΙΔΙΑ & ΚΕΙΜΕΝΑ (MOBILE) === */

    /* 1. Κλειδώνουμε τα εικονίδια να είναι ΠΑΝΤΑ τέλειοι κύκλοι */
    .method-icon {
        min-width: 42px !important; 
        min-height: 42px !important;
        flex-shrink: 0 !important; /* Αυτό απαγορεύει στο σύστημα να τα "ζουλήξει" */
        border-radius: 50% !important;
    }

    /* 2. Περιορίζουμε τον χώρο του κειμένου για να μην "κολλάει" στα δεξιά */
    .method-card > div:not(.method-icon) {
        width: 100% !important;
        overflow: hidden !important;
        padding-right: 10px !important; /* Δίνει αέρα στα δεξιά */
    }

    /* 3. Αναγκάζουμε τα μεγάλα email/κείμενα να σπάνε ομαλά αν δεν χωράνε */
    .method-card h4, 
    .method-card a {
        word-break: break-word !important; 
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    /* 4. Μαζεύουμε λίγο την παράγραφο για να μην ακουμπάει στις άκρες του κινητού */
    .contact-subtitle {
        padding: 0 15px !important; /* Αέρας αριστερά-δεξιά για το κεντρικό κείμενο */
    }






/* ==========================================================
   Showcase Storytelling Page Style 
========================================================== */

/* 2. Main Container with Scroll Snapping  */
.showcase-container {
    height: 100vh;
    overflow-y: scroll;
}

/* 3. Global Section Styling (100% Height)  */
.showcase-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start; /* Sections start at the top  */
    position: relative;
    padding: 0 10%;
    background-color: #faf8f5;
    overflow: hidden;
}

/* Dark Theme Section */
.showcase-section.dark-bg {
    background-color: #121722;
}

/* 4. Showcase Content Layout */
.showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
}

/* Reverses layout for even-numbered sections */
.showcase-content.reverse {
    flex-direction: row-reverse;
}

/* 5. Typography */
.showcase-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    display: block;
    line-height: 1;
    font-family: serif;
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.showcase-desc {
    font-size: 1.2rem;
    color: var(--color-text-gray);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.6;
}


/* 6. Visual Mockups (Cards and Devices) */
.showcase-visual {
    flex: 1;
    perspective: 1000px;
}

/* The Result Card (e.g., Prescription Ready) */
.result-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft, minimal shadow [cite: 1] */
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.result-card h3 { font-size: 1.5rem; color: var(--color-dark); margin-bottom: 10px; }
.result-card p { color: var(--color-text-gray); }

/* Placeholder for Icon */
.card-icon svg { width: 50px; height: 50px; fill: var(--color-accent); margin-bottom: 20px; }

/* 7. Device Mockups */
.mockup-frame {
    width: 100%;
    max-width: 300px;
    height: 550px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.dark-bg .mockup-frame {
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

/* Browser Mockup Styling */
.browser-mockupp {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.browser-toolbarr {
    height: 30px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

/* Ρυθμίσεις για το Iframe μέσα στο Mockup */
.mockup-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden; /* Κρύβει οτιδήποτε περισσεύει */
}

.mockup-screen iframe {
    width: 100%;
    height: 100%;
    border: none; /* Αφαιρεί το default πλαίσιο του iframe */
    display: block;
}

/* Προαιρετικό: Αν θέλεις να φαίνεται πιο "βάθος" στην οθόνη */
.browser-mockup .mockup-screen {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.dots { display: flex; gap: 5px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.address-bar {
    background: white;
    color: #666;
    font-size: 0.8rem;
    padding: 2px 10px;
    border-radius: 4px;
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

/* 8. Extra Details: Tags and Indicators */
.showcase-tags {
    display: flex;
    gap: 15px;
}

.showcase-tags span {
    padding: 8px 16px;
    background: rgba(196, 139, 75, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.5;
}

.final-cta {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-accent);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid;
    padding-bottom: 5px;
}

/* 9. Animations and Initial States (Provided [cite: 10]) */
.slide-right, .slide-left {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right { transform: translateX(50px); }
.slide-left { transform: translateX(-50px); }

/* Intersection Observer Active States (Provided ) */
.slide-right.active, .slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* 10. Mobile Responsiveness Adjustments (Provided [cite: 45-54]) */
@media (max-width: 992px) {
    .showcase-content, .showcase-content.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .showcase-title { font-size: 2.2rem; }
    .showcase-desc { font-size: 1rem; }
    .mockup-frame, .result-card, .browser-mockupp { width: 100%; max-width: 300px; height: 350px; }
    .showcase-text { order: 1; }
    .showcase-visual { order: 2; }
}

/* === THE ULTIMATE IPHONE MOCKUP === */

.ultimate-phone-container {
    position: relative;
    width: 300px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Εφέ λάμψης πίσω από το κινητό */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 90%;
    background: radial-gradient(circle, rgba(196, 139, 75, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    filter: blur(40px);
}

.iphone-15 {
    width: 290px;
    height: 590px;
    background: #0f1115; /* Χρώμα τιτανίου */
    border-radius: 54px;
    position: relative;
    z-index: 2;
    padding: 10px; /* Το πάχος του εξωτερικού πλαισίου */
    box-shadow: 
        0 0 0 2px #2a2d35, /* Μεταλλικό τελείωμα */
        0 20px 50px rgba(0,0,0,0.8);
}

/* Πλευρικά Κουμπιά */
.side-buttons .button {
    position: absolute;
    background: #1a1d23;
    width: 3px;
    border-radius: 2px;
}
.volume-up { height: 40px; top: 120px; left: -3px; }
.volume-down { height: 40px; top: 170px; left: -3px; }
.power { height: 60px; top: 150px; right: -3px; }

/* Εσωτερικό Bezel & Οθόνη */
.inner-bezel {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 46px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* === THE ULTIMATE IPHONE SCREEN (SCALING TRICK) === */

.screen-content {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative; /* Απαραίτητο για το scale trick */
}

.screen-content iframe {
    /* 1. Αναγκάζουμε το site να φορτώσει σε κανονική ανάλυση iPhone (375x800) */
    width: 375px !important;
    height: 800px !important;
    
    /* 2. Το σμικρύνουμε στο 71.5% για να κουμπώσει ακριβώς στο mockup μας */
    transform: scale(0.715) !important;
    transform-origin: top left !important; /* Ξεκινάει το scale από πάνω αριστερά */
    
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    display: block;
}

/* === Προσαρμογή του Scale για όταν μικραίνει το mockup στα κινητά === */
@media (max-width: 992px) {
    .screen-content iframe {
        /* Όταν το mockup μικραίνει στα 250px, αλλάζουμε το scale στο 60.8% */
        transform: scale(0.608) !important;
        height: 810px !important; 
    }
}

/* Dynamic Island */
.dynamic-island-container {
    position: absolute;
    top: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dynamic-island {
    width: 85px;
    height: 22px;
    background: #000;
    border-radius: 20px;
}

/* Home Bar */
.home-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 10;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .ultimate-phone-container {
        width: 260px;
    }
    .iphone-15 {
        width: 250px;
        height: 510px;
        border-radius: 48px;
    }
    .dynamic-island {
        width: 70px;
        height: 18px;
    }
}

/* === PREMIUM TEXT BOX (DARK THEME) === */

/* === ΔΙΟΡΘΩΣΗ ΓΙΑ ΤΟ ΝΟΥΜΕΡΟ ΣΤΑ DARK SECTIONS === */

.dark-bg .showcase-number {
    color: #ffffff !important; /* Λευκό χρώμα για μέγιστη αντίθεση */
    opacity: 0.15 !important; /* 15% ορατότητα - το κάνει διακριτικό αλλά ευανάγνωστο */
    background: transparent !important; /* Σβήνει το περίεργο σκούρο κουτί από πίσω */
    display: block;
    line-height: 1;
}

/* Αν προτιμάς να έχει το "χρυσαφί/πορτοκαλί" χρώμα του brand σου αντί για λευκό, 
   μπορείς να αλλάξεις το color από πάνω σε: color: var(--color-accent) !important; */


   /* === AI CALL INTERFACE (SCREEN CONTENT) === */

.ai-call-screen {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Σκούρο μπλε/ιατρικό φόντο */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    padding-top: 60px;
}

/* Το Avatar του Agent με εφέ Pulse */
.ai-avatar {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2bbeba; /* Ένα "ιατρικό" τιρκουάζ χρώμα */
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(43, 190, 186, 0.3);
    z-index: 1;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Κείμενα Κλήσης */
.caller-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.call-status {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0 0 40px 0;
}

/* Animated Sound Waves (Όταν μιλάει η AI) */
.sound-waves {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 50px;
    margin-bottom: 60px;
}

.sound-waves .bar {
    width: 6px;
    background: #2bbeba;
    border-radius: 10px;
    animation: sound 1s infinite alternate ease-in-out;
}

.sound-waves .bar:nth-child(1) { height: 15px; animation-delay: 0.1s; }
.sound-waves .bar:nth-child(2) { height: 35px; animation-delay: 0.3s; }
.sound-waves .bar:nth-child(3) { height: 50px; animation-delay: 0.0s; }
.sound-waves .bar:nth-child(4) { height: 30px; animation-delay: 0.2s; }
.sound-waves .bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes sound {
    0% { transform: scaleY(0.3); opacity: 0.5; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* Κουμπιά Κλήσης (Κάτω μέρος) */
.call-actions {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 50px;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.action-btn.end-call {
    background: #ef4444; /* Κόκκινο κουμπί τερματισμού */
    transform: scale(1.1);
}


/* === ΤΕΛΕΙΟΠΟΙΗΣΗ SHOWCASE ΓΙΑ ΚΙΝΗΤΑ (MOBILE) === */

@media (max-width: 992px) {
    /* 1. Δίνουμε "αέρα" στην κορυφή για να μην κρύβει το Navbar τον τίτλο */
    .showcase-section {
        padding: 120px 20px 60px 20px !important; 
        height: auto !important; 
        min-height: 100vh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    /* 2. Στοίχιση των στοιχείων στο κέντρο */
    .showcase-content, .showcase-content.reverse {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .showcase-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Φέρνουμε τα μεγέθη στα μέτρα του κινητού */
    .showcase-number {
        font-size: 4rem !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

    .showcase-title {
        font-size: 2.2rem !important;
        margin-top: -10px !important;
        line-height: 1.2 !important;
    }

    /* 3. Αναγκάζουμε τα ταμπελάκια να σπάνε γραμμή αν δεν χωράνε */
    .showcase-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    /* 4. Μαζεύουμε το "Ultimate iPhone" για να μην βγαίνει εκτός οθόνης */
    .ultimate-phone-container {
        width: 250px !important;
        margin: 0 auto !important;
    }

    .iphone-15 {
        width: 100% !important;
        height: 520px !important;
        border-radius: 46px !important;
        padding: 8px !important; /* Πιο λεπτό bezel στα κινητά */
    }

    /* 5. Προσαρμογή του UI της κλήσης (AI Agent) */
    .ai-call-screen {
        padding-top: 40px !important;
    }
    
    .ai-avatar {
        width: 75px !important;
        height: 75px !important;
        margin-bottom: 15px !important;
    }
    
    .caller-name {
        font-size: 1.3rem !important;
    }

    .sound-waves {
        margin-bottom: 40px !important;
    }
    
    .call-actions {
        bottom: 30px !important;
    }

    /* === Διορθώνει το overlap του κουμπιού στο τελευταίο section === */
    .final-cta {
        position: relative !important; /* Το βγάζει από το "κάρφωμα" στο κάτω μέρος */
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 40px !important; /* Του δίνει αέρα από το mockup */
        margin-bottom: 20px !important;
        display: block !important;
        text-align: center !important;
    }


















    /* === ΤΕΛΙΚΗ ΔΙΟΡΘΩΣΗ ΓΙΑ WIDE DESKTOP VIEW ΣΕ ΚΙΝΗΤΑ === */


    /* 1. Το Mockup να πιάνει σχεδόν όλο το πλάτος της οθόνης */
    .browser-mockupp {
        width: 95vw !important;
        height: 230px !important; /* Σταθερό ύψος για landscape αίσθηση */
        max-width: 500px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .mockup-screen {
    flex: 1 !important; /* Γεμίζει όλο τον χώρο κάτω από το toolbar */
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 0 0 12px 12px !important;
}

.mockup-screen iframe {
    /* Ορίζουμε το Zoom (0.25 = Desktop View) */
    --zoom-factor: 0.25; 

    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    /* ΜΑΓΕΙΑ: Το πλάτος είναι πάντα το 100% του mockup διαιρεμένο με το zoom.
       Αν το mockup είναι 300px, το iframe γίνεται 1200px.
       Αν το mockup είναι 500px, το iframe γίνεται 2000px.
       Έτσι ΔΕΝ αφήνει ποτέ κενό δεξιά! */
    width: calc(100% / var(--zoom-factor)) !important;
    height: calc(100% / var(--zoom-factor)) !important;

    transform: scale(var(--zoom-factor)) !important;
    transform-origin: top left !important;
    border: none !important;
}

}

/* === PREMIUM ΕΜΦΑΝΙΣΗ ΓΙΑ ΤΟ ΚΟΥΜΠΙ DEMO === */

.demo-btn {
    text-decoration: none !important; /* Εξαφανίζει την άσχημη γραμμή */
    color: #ffffff !important; /* Σιγουρεύει ότι το κείμενο παραμένει λευκό */
    font-weight: 600;
    letter-spacing: 0.5px; /* Δίνει λίγο αέρα στα γράμματα */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important; /* Ομαλό animation για το hover */
}

/* Εφέ όταν περνάει το ποντίκι (Hover) */
.demo-btn:hover {
    transform: translateY(-3px); /* Το κουμπί σηκώνεται ελαφρώς προς τα πάνω */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); /* Αποκτάει μια βαθιά, ωραία σκιά */
    background-color: var(--color-accent, #c48b4b) !important; /* Προαιρετικά: Αλλάζει στο χρυσό/πορτοκαλί χρώμα του brand σας */
    color: #ffffff !important;
}

/* === ΟΡΑΤΟΤΗΤΑ ΚΟΥΜΠΙΩΝ (DESKTOP VS MOBILE) === */

/* 1. Προεπιλογή (Desktop Οθόνες): Κρύβουμε το mobile κουμπί */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline-flex !important; /* Ή inline-block, για να φαίνεται σωστά */
}

/* 2. Για Κινητά και Tablets (κάτω από 992px): Κρύβουμε το desktop κουμπί */
@media (max-width: 992px) {
    .mobile-only {
        display: inline-flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}
