/* ============================================================
   GASTROFLOW | MASTER STYLESHEET (FULL VERSION)
============================================================
   TABLE OF CONTENTS:
   
   01. Variables & Configuration
   02. Reset & Base Typography
   03. Utility Classes (Layout & Spacing)
   04. Buttons & UI Components
   05. Header & Navigation (Desktop & Mobile)
   06. Hero Section & Phone Mockup
   07. Features Grid
   08. Pricing Tables
   09. Call to Action & Forms (EmailJS)
   10. Footer
   11. Media Queries (Responsive Rules)
   12. 404 Error Page Styles
   13. Text Pages (Privacy Policy)
   14. Portfolio Page Styles
   15. Template Page - Frames
   16. Partners Page
   17. Feautures Page
============================================================
*/

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-display: swap;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2) format('woff2');
  font-weight: 900;
  font-style: normal;
}
/* ------------------------------------------------------------
   [01] VARIABLES & CONFIGURATION
------------------------------------------------------------
*/
:root {
    /* Palette */
    --primary: #0A2342;
    --primary-light: #16365f;
    --accent: #FF6F61; /* Coral */
    --accent-hover: #e85a4c;
    --bg-light: #F8F9FA;
    --text-main: #2D3436;
    --text-muted: #444b4d;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Effects */
    --container-width: 1100px;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ------------------------------------------------------------
   [02] RESET & BASE TYPOGRAPHY
------------------------------------------------------------
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden; /* Αποφυγή οριζόντιου scroll στα κινητά */
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* ------------------------------------------------------------
   [03] UTILITY CLASSES
------------------------------------------------------------
*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.section-light { background-color: var(--bg-light); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.full-width { display: block; text-align: center; width: 100%; }

/* ------------------------------------------------------------
   [04] BUTTONS
------------------------------------------------------------
*/
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background-color: var(--primary); color: var(--white); }

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 700;
    border: 1px solid transparent;
}
.btn-white:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* ------------------------------------------------------------
   [05] HEADER & NAVIGATION
------------------------------------------------------------
*/
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    text-decoration: none;
}
.logo span { color: var(--accent); }

/* Desktop Navigation (Αυτό φαίνεται στο PC) */
.nav {
    display: flex; /* Εμφάνιση σε σειρά */
    align-items: center;
}

.nav a {
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav a:not(.btn):hover { color: var(--accent); }

/* Hamburger Menu (ΚΡΥΦΟ ΣΤΟ DESKTOP) */
.hamburger {
    display: none !important; /* <-- Η σημαντική αλλαγή */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}
/* ------------------------------------------------------------
   [06] HERO SECTION & MOCKUP
------------------------------------------------------------
*/
.hero {
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; max-width: 450px; }

.hero-btns { display: flex; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }

.trust-badge {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.trust-badge i { color: var(--primary); margin-right: 5px; }
.separator { margin: 0 10px; opacity: 0.3; }

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-mockup .screen-header h2{ 
    font-size: medium;
    margin: 10px;
    color: #ffffff;
}

.phone-mockup {
    width: 280px;
    height: 550px;
    background: var(--primary);
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
    z-index: 2;
    border: 8px solid #333;
    max-width: 90vw; /* Responsive limit */
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .phone-mockup:hover {
        transform: scale(1.2);
        transition: transform 0.4s ease; /* Για να γίνει ομαλά το μεγέθυνση */
    }
}    


.screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen-header {
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    text-align: center;
    padding-top: 40px;
}
.screen-header h3 { color: #fff; font-size: 1.4rem; margin: 0; }
.screen-header h4 { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin: 5px 0 0; font-family: var(--font-body); }

/* --- Mockup Content Styling (Upgraded) --- */

.screen-body { 
    padding: 20px; 
    flex: 1; 
    background: #FAF9F6; /* Πολύ απαλό "Off-White" (Eggshell) */
    text-align: left; /* Αλλαγή σε left align για να μοιάζει με λίστα */
}

.screen-body h3 { 
    font-size: 1.1rem; 
    margin-bottom: 20px; 
    color: var(--primary); 
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.food-item {
    height: auto; /* Όχι σταθερό ύψος, για να χωράει περιγραφή */
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 12px 15px; /* Περισσότερος "αέρας" μέσα */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Πολύ απαλή σκιά για βάθος */
    display: flex;
    justify-content: space-between; /* Σπρώχνει την τιμή δεξιά */
    align-items: center;
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

/* Μικρό εφέ κίνησης για να φαίνεται ζωντανό */
.food-item:nth-child(2) { transform: scale(0.98); opacity: 0.9; } /* Το 1ο item */
.food-item:nth-child(3) { transform: scale(0.96); opacity: 0.8; } /* Το 2ο item */
.food-item:nth-child(4) { transform: scale(0.94); opacity: 0.7; } /* Το 3ο item */

.item-details {
    display: flex;
    flex-direction: column;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
    font-family: var(--font-body);
}

.item-desc {
    font-size: 0.65rem;
    color: #999;
    font-weight: 400;
    max-width: 130px; /* Για να μην πέφτει πάνω στην τιμή */
    line-height: 1.2;
}

.item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent); /* Το Κοραλί χρώμα σου */
    background: rgba(255, 111, 97, 0.1); /* Απαλό φόντο πίσω από την τιμή */
    padding: 5px 10px;
    border-radius: 8px;
}
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ------------------------------------------------------------
   [07] FEATURES SECTION
------------------------------------------------------------
*/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-card {
    border: 1px solid transparent;
    transition: all 0.3s ease; /* Καλύπτει border, shadow και μετακίνηση */
}

.feature-card:hover {
    border-color: #e85a4c;
    /* Μια ελαφριά σκιά και μια μικρή ανύψωση προς τα πάνω */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); 
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(10, 35, 66, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ------------------------------------------------------------
   [08] PRICING SECTION
------------------------------------------------------------
*/
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: 0.3s;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.price { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.period { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.setup-fee { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-top: 5px; margin-bottom: 30px; }

.features-list { margin-bottom: 30px; }
.features-list li { margin-bottom: 15px; color: var(--text-main); font-size: 0.95rem; }
.features-list li i { color: var(--accent); margin-right: 10px; width: 20px; }

/* =========================================
   SMART ADD-ONS (PRICING SECTION)
========================================= */

.addons-wrapper {
  margin-top: 60px;
  background-color: var(--bg-light, #f8f9fa); /* Βάλε το δικό σου light gray αν έχεις */
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 40px 20px;
}

.addons-header {
  text-align: center;
  margin-bottom: 35px;
}

.addons-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.badge-new {
  background-color: #ff6f61; /* Το accent color σου */
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.addons-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile-first: 1 στήλη */
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.addon-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.addon-icon {
  background: rgba(255, 111, 97, 0.1); /* Απαλό φόντο με βάση το accent */
  color: #ff6f61;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: 15px;
}

.addon-info {
  flex-grow: 1;
}

.addon-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.addon-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.addon-price {
  text-align: right;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-main);
  flex-shrink: 0;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
}

.addon-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
}

/* --- Responsive για Tablets & Desktops --- */
@media (min-width: 768px) {
  .addons-wrapper {
    padding: 50px 40px;
  }
  
  .addons-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 στήλες σε μεγαλύτερες οθόνες */
    gap: 20px;
  }
}

/* ------------------------------------------------------------
   [09] CTA & FORMS (Flat Grid Style)
------------------------------------------------------------
*/
.cta-section {
    background-color: var(--primary); /* Μπλε φόντο */
    color: var(--white);
    text-align: center;
    padding-bottom: 80px;
}

.cta-section h2 { color: var(--white); margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 50px; }

/* ΤΟ ΠΛΑΙΣΙΟ ΤΗΣ ΦΟΡΜΑΣ (GRID) */
.contact-form {
    background-color: #FFFFFF; /* Λευκό φόντο */
    max-width: 600px;
    width: 100%; /* Default πλάτος */
    margin: 0 auto; /* Κεντράρισμα */
    padding: 40px;
    border-radius: 20px; /* Ελαφρώς στρογγυλεμένο, σχεδόν τετράγωνο */
    border: 1px solid #ddd; /* Το περίγραμμα του Grid */
    text-align: left;
}

/* Header εντός φόρμας */
.form-header h3 {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 25px;
}

/* Labels */
.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary); /* Μπλε γράμματα */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Inputs & Lines */
.contact-form input, 
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee; /* Γκρι γραμμή */
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
    border-radius: 0;
}

/* Focus Effect */
.contact-form input:focus, 
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--accent); /* Κοραλί γραμμή */
}

.contact-form ::placeholder { color: #ccc; }
.contact-form option { background-color: #fff; color: var(--text-main); }
.contact-form textarea { resize: none; min-height: 40px; }

/* Κουμπί */
.form-footer { margin-top: 30px; }

#submit-btn {
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

#submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}


/* MOBILE RESPONSIVENESS (Το σημαντικό κομμάτι) */
@media (max-width: 768px) {
    .contact-form {
        width: 95%; /* Αφήνει 5% κενό αριστερά και 5% δεξιά */
        padding: 25px; /* Λίγο μικρότερο padding μέσα */
    }
}
/* ------------------------------------------------------------
   [10] FOOTER
------------------------------------------------------------
*/
.site-footer {
    background-color: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Πάνω Μέρος: Λογότυπο & Κουμπί Συνεργατών */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 111, 97, 0.08); /* Πολύ απαλό κοραλί */
    color: var(--accent);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 111, 97, 0.2);
}

.partner-badge:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.2);
}

/* Κάτω Μέρος: Γραμμή, Copyright & Νομικά */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-bottom .separator {
    color: #ccc;
}

.footer-bottom .credits a {
    color: var(--primary);
    font-weight: 700;
}

.footer-bottom .credits a:hover {
    color: var(--accent);
}

/* --- DESKTOP VIEW (Διαχωρισμός Αριστερά-Δεξιά) --- */
@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between; /* Λογότυπο αριστερά, Κουμπί δεξιά */
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between; /* Copyright αριστερά, Νομικά δεξιά */
    }
}
/* ------------------------------------------------------------
   [11] MEDIA QUERIES (RESPONSIVE RULES)
------------------------------------------------------------
*/
@media (max-width: 768px) {
    /* 1. Header & Mobile Menu */
    .header { padding: 15px 0; }
    
    /* Εμφάνιση του Hamburger ΜΟΝΟ στο κινητό */
    .hamburger { display: block !important; }

    /* Απόκρυψη του κανονικού μενού και μετατροπή σε κάθετη λίστα */
    .nav {
        display: none; /* Κρυφό αρχικά */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav.active { display: flex; } /* Εμφάνιση όταν πατηθεί */
    
    .nav a { 
        margin: 15px 0; 
        display: block; 
        margin-left: 0; 
    }
    .nav a.btn { margin-top: 10px; display: inline-block; }

    /* Hero Responsive */
    .hero { padding: 40px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero p { margin: 0 auto 30px; }
    
    .hero-btns { justify-content: center; flex-direction: column; }
    .hero-btns .btn { width: 100%; text-align: center; }

    .trust-badge { justify-content: center; gap: 10px; flex-direction: column; }
    .mobile-hide { display: none; }

    /* Section Adjustments */
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }
    
    /* Pricing Responsive */
    .pricing-card.popular { transform: scale(1); }
}

/* ------------------------------------------------------------
   [12] 404 PAGE STYLES
------------------------------------------------------------
*/
.error-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    text-align: center;
    padding: 20px;
}

.error-container h1 { font-size: 5rem; color: var(--primary); margin: 0; line-height: 1; }
.error-container h2 { font-size: 1.5rem; margin-bottom: 15px; color: var(--text-main); }

.icon-box-large {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}
.error-container .btn-primary{margin-top:20px;}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ------------------------------------------------------------
   [13] TEXT PAGES (PRIVACY - CLEAN WHITE THEME)
------------------------------------------------------------
*/
.text-page { 
    background-color: #ffffff; /* Λευκό Φόντο */
    color: #333333; /* Σκούρα Γκρι Γράμματα (για αντίθεση) */
    
    /* ΣΗΜΑΝΤΙΚΟ: Μεγάλο κενό πάνω για να μην πέφτει το μενού πάνω στον τίτλο */
    padding-top: 140px; 
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh; 
}

/* Κεντρικός Τίτλος */
.text-page h1 {
    color: var(--primary); /* Το Μπλε του Brand */
    text-align: center;
    margin-bottom: 10px;
}

/* Ημερομηνία */
.last-updated { 
    color: #888; /* Πιο απαλό γκρι */
    font-size: 0.9rem; 
    text-align: center;
    margin-bottom: 50px; 
    display: block;
    border-bottom: 1px solid #eee; /* Διαχωριστική γραμμή */
    padding-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Το κυρίως κείμενο */
.prose { 
    max-width: 800px; 
    margin: 0 auto; /* Κεντράρισμα στη σελίδα */
}

.prose h3 { 
    margin-top: 40px; 
    margin-bottom: 15px; 
    font-size: 1.4rem; 
    color: var(--primary); /* Μπλε Τίτλοι Ενοτήτων */
    font-weight: 700;
}

.prose p { 
    margin-bottom: 15px; 
    color: #444; /* Σκούρο γκρι για εύκολο διάβασμα */
    line-height: 1.7; /* Αέρας ανάμεσα στις γραμμές */
    font-size: 1.05rem;
}

.prose ul { 
    list-style: disc; 
    margin-left: 20px; 
    margin-bottom: 25px; 
    color: #444; 
}

.prose li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Links (π.χ. email) */
.prose a { 
    color: var(--accent); /* Κοραλί */
    text-decoration: none; 
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 111, 97, 0.2);
    transition: 0.3s;
}

.prose a:hover {
    border-bottom-color: var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .text-page {
        padding-top: 110px; /* Λίγο μικρότερο σε κινητά */
    }
    .text-page h1 {
        font-size: 1.8rem;
    }
}
/* ------------------------------------------------------------
   [14] PORTFOLIO PAGE STYLES
------------------------------------------------------------
*/
.section-header-page {
    background-color: var(--bg-light);
    padding: 50px 0 60px;
    text-align: center;
}
.section-header-page h1 { font-size: 3rem; margin-bottom: 15px; }
@media (max-width: 768px) { .section-header-page h1 { font-size: 2.2rem; } }

.portfolio-tags { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.tag { padding: 8px 20px; border-radius: 30px; border: 1px solid #ddd; color: var(--text-muted); font-size: 0.9rem; cursor: pointer; transition: 0.3s; }
.tag:hover, .tag.active { background-color: var(--primary); color: var(--white); border-color: var(--primary); }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.portfolio-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.portfolio-image { height: 250px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: #f0f0f0; }

.overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 35, 66, 0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s ease;
}
.portfolio-card:hover .overlay { opacity: 1; }

.portfolio-content { padding: 25px; }
.portfolio-content h3 { font-size: 1.4rem; margin-bottom: 5px; }
.portfolio-content .category { color: var(--accent); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; display: block; }
.portfolio-content .desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* Mockup Text Menu List (CSS Draw) */
.mock-menu-list { width: 160px; background: #fff; padding: 15px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 8px; }
.mock-header { height: 8px; width: 50%; background-color: var(--primary); margin-bottom: 10px; border-radius: 4px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; }
.mock-text { height: 6px; background-color: #e0e0e0; border-radius: 3px; }
.mock-text.short { width: 40%; }
.mock-text.medium { width: 60%; }
.mock-text.long { width: 70%; }
.mock-price { height: 6px; width: 15%; background-color: var(--accent); border-radius: 3px; }

/* Placeholder Mock Browser Icon */
.mock-browser { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* Filtering Styles */
.portfolio-card {
  display: none; /* Αρχικά κρυμμένα */
}

.portfolio-card.show {
  display: block; /* Εμφανίζονται μόνο αν έχουν την κλάση show */
  animation: fadeIn 0.5s; /* Ωραίο εφέ εμφάνισης */
}

.section.cta-section p {
    margin-bottom: 15px;
   
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------
   [15] Template Page - Frames (Mobile-First Approach)
------------------------------------------------------------
*/

.section-header-page {
  text-align: center;
  padding: 60px 15px 30px; /* Ελαφρώς μικρότερο padding για τα κινητά */
  background-color: var(--light-bg);
}

.showcase-grid {
  display: grid;
  margin-top: -50px;
  grid-template-columns: 1fr; /* Ξεκινάει με 1 στήλη (όλα το ένα κάτω από το άλλο) */
  gap: 30px;
  align-items: center;
  padding: 30px 50px;
}

.template-menu h2 {
  font-size: 1.75rem; /* Λίγο μικρότερος τίτλος στα κινητά */
  margin-bottom: 10px;
  text-align: center;
}

.template-menu p {
  color: #666;
  margin-bottom: 25px;
    text-align: center;

}

.template-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.template-btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 500;
  font-family: inherit;
  font-size: 1rem;
}

.template-btn:hover, .template-btn.active {
  background: #0A2342;
  color: white;
  border-color: #0A2342;
}

/* --- ΤΟ ΨΕΥΤΙΚΟ ΚΙΝΗΤΟ (CSS PHONE) - MOBILE ΜΕΓΕΘΟΣ --- */
.css-phone {
  width: 280px; /* Ιδανικό για να χωράει άνετα και στα μικρότερα κινητά */
  height: 560px;
  margin: 0 auto;
  border: 10px solid rgb(0, 0, 0);
  border-radius: 35px;
  background: #fff;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* Η "Τρύπα" της κάμερας πάνω-πάνω (Notch) */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #111;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Το Iframe μέσα στο κινητό */
.css-phone iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000000;
}

@media (min-width: 768px) {
  
  .section-header-page {
    padding: 80px 20px 40px; /* Επαναφορά των κενών για μεγάλες οθόνες */
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr; /* Απλώνεται σε 2 στήλες δίπλα-δίπλα */
    gap: 40px;
    padding: 40px 0;
  }

  .template-menu h2 {
    font-size: 2rem;
  }

  .template-list {
    gap: 15px;
    margin-bottom: 30px;
  }

  .template-btn {
    font-size: 1.1rem;
  }

  /* --- CSS PHONE - DESKTOP ΜΕΓΕΘΟΣ --- */
  .css-phone {
    width: 320px; /* Επιστροφή στις αρχικές σου διαστάσεις */
    height: 650px;
    border: 12px solid #111;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

  .phone-notch {
    width: 120px;
    height: 25px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

/* ------------------------------------------------------------
   [16] PARTNERS PAGE EXTRA UTILITIES
------------------------------------------------------------
*/
.hero-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 20px 80px; /* Προσθήκη 20px αριστερά/δεξιά για ασφάλεια */
    box-sizing: border-box; /* Αποτρέπει το να βγει εκτός πλάτους οθόνης */
    width: 100%;
}

.hero-dark h1 {
    color: var(--white);
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.hero-dark p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Mobile Adjustments για το Hero Dark */
@media (max-width: 768px) {
    .hero-dark { 
        padding: 60px 15px 50px; /* Μικρότερο padding πάνω-κάτω για κινητά */
    }
    
    .hero-dark h1 { 
        font-size: 2rem; /* Αρκετά μικρότερο για να χωράει χωρίς να σπάει άσχημα */
        margin-bottom: 15px;
    }
    
    .hero-dark p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* =========================================
   17. FEATURES PAGE STYLES
========================================= */

/* Showcase Sections (Κείμενο δίπλα σε εικόνα) */
.showcase-section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light, #f8f9fa);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.showcase-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-main);
}

.benefit-list i {
  color: var(--accent);
  margin-top: 4px;
}

.feature-mini {
  margin-top: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border-left: 4px solid var(--accent);
}

.feature-mini h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-mini h4 i {
  color: var(--accent);
}

/* Process Grid (Τα 3 βήματα) */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Responsive (Tablets & Desktops) --- */
@media (min-width: 992px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  /* Στο δεύτερο section αντιστρέφουμε τη σειρά (Εικόνα αριστερά, κείμενο δεξιά) */
  .showcase-reverse .showcase-content {
    order: 2;
  }
  .showcase-reverse .showcase-visual {
    order: 1;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.showcase-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Μια απαλή σκιά */
}