/* --- Γενικές Ρυθμίσεις Σελίδας --- */
.order-container {
    padding: 120px 20px 60px;
    padding-top: 100px;
    background: radial-gradient(circle at top, #0f172a 0%, #020617 100%);
    min-height: 100vh;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.order-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.order-header span {
    color: #00d2ff;
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.order-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Layout Wrapper (Desktop: Side-by-Side) --- */
.order-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Αριστερή Πλευρά: Η Κάρτα --- */
.plan-summary {
    flex: 1;
    position: sticky;
    top: 120px; /* Η κάρτα "μένει" εκεί καθώς σκρολάρεις στο PC */
}

.card-content.highlight {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid #00d2ff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.15);
    backdrop-filter: blur(10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d2ff;
    color: #020617;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-content i {
    font-size: 3rem;
    color: #00d2ff;
    margin-bottom: 20px;
}

.card-price {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin: 15px 0;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    text-align: left;
}

.card-features li {
    margin-bottom: 12px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features li i {
    font-size: 0.9rem;
    color: #00d2ff;
    margin-bottom: 0;
}

/* --- Δεξιά Πλευρά: Η Φόρμα --- */
.details-form {
    flex: 1.4;
    background: rgba(15, 23, 42, 0.4);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

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

.input-group label {
    display: block;
    color: #00d2ff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.input-group label i {
    margin-right: 8px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #00d2ff;
    background: rgba(2, 6, 23, 0.8);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- Κουμπί & Status --- */
.order-btn {
    width: 100%;
    padding: 20px;
    background: #00d2ff;
    color: #020617;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.order-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

#form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none; /* Εμφανίζεται μέσω JS */
    font-weight: 500;
}
/* Εμφάνιση του κουμπιού μόνο σε κινητά */
.menu-toggle {
    display: none; /* Κρυφό στο PC */
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}
/* --- RESPONSIVE (Κινητό & Tablet) --- */
@media (max-width: 968px) {
    .menu-toggle {
        display: block; /* Εμφάνιση στο κινητό */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Κρυμμένο έξω από την οθόνη δεξιά */
        top: 70px; /* Κάτω από το navbar */
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        backdrop-filter: blur(10px);
    }

    /* Όταν πατάμε το κουμπί, το μενού έρχεται στην οθόνη */
    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 25px 0;
    }
    .order-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .plan-summary {
        position: static;
        width: 100%;
        max-width: 450px;
        margin-bottom: 30px;
    }

    .details-form {
        width: 100%;
    }

  .order-header h1 {
        font-size: 2rem;    /* Μικραίνει το μέγεθος για να μην "σπάει" σε πολλές γραμμές */
        padding: 0 15px;    /* Δίνει λίγο αέρα δεξιά-αριστερά */
    }
.order-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
.order-header {
        margin-top: 50px;
    }

    .form-row {
        grid-template-columns: 1fr; /* Email & Τηλέφωνο κάθετα στο κινητό */
    }
    
    .order-container {
        padding-top: 120px; /* Δίνει χώρο για να μην κρύβεται πίσω από το μενού */
        min-height: auto;
    }

    .details-form {
        padding: 25px 20px;
    }
}