/* ------------------------------
   GLOBAL MOBILE
------------------------------ */
body {
    padding: 0 5px;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 1rem;          /* scale reference */
    padding: 0.6em 0.8em;
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;           /* ΚΡΙΣΙΜΟ */
}

.nav-mobile {
    display: flex;
    align-items: center;
}


.hamburger{
    display: block;
    font-size: 2em;        /* όπως το είχαμε */
    line-height: 1;
    transform: translateY(-0.15em);
	margin-top:10px;
}
.nav-right {
    display: none;
    flex-direction: column;
    background: #1966a4;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 15px;
}

.nav-right.open {
    display: flex;
}
/* =========================
   MOBILE NAV INFO
   ========================= */

.nav-info{
    display: none;
}
.nav-logo-desktop{
    display: none;
}
.nav-logo-mobile{
    display: flex;
    align-items: center;
}

.nav-logo-mobile img{
    width: auto;
    display: block;

    object-fit: contain;
    border-radius: 0.8em;
}



/* επάγγελμα */
.nav-title{
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

/* γραμμές πόλης */
.nav-line{
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.nav-line a{
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-left: 4px;
}

.nav-line .city{
    font-weight: 600;
}

/* =========================
   MOBILE OFF-CANVAS MENU
   ========================= */

.mobile-menu{
    position: fixed;
    top: 0;
    left: 0;

    width: 280px;
    height: 100vh;

    background: #1966a4;
    padding: 90px 24px 24px;

    display: flex;
    flex-direction: column;
    gap: 22px;

    transform: translateX(-100%);
    transition: transform 0.35s ease;

    z-index: 1001;
}

.mobile-menu a{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu.open{
    transform: translateX(0);
}
/* =========================
   CLOSE BUTTON (X)
   ========================= */

.mobile-close{
    position: absolute;
    top: 16px;
    right: 16px;

    background: none;
    border: 0;

    color: #fff;
    font-size: 28px;
    font-weight: 700;

    cursor: pointer;
}

/* =========================
   OVERLAY
   ========================= */

.mobile-overlay{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.45);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;

    z-index: 1000;
}

.mobile-overlay.show{
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   MOBILE NAV VISIBILITY
   ========================= */

.nav-right{
    display: none;
}

/* COOKIE BANNER */
#cookie-banner {
    flex-direction: column;
    gap: 10px;
}

/* ------------------------------
   HOME PAGE (HERO / SERVICES)
------------------------------ */
.hero {
    padding: 50px 10px;
}

.hero h1 {
    font-size: 1.8rem;
}

.image-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.rounded-image {
    width: 85%;          /* 👈 μικρότερες */
    max-width: 320px;    /* 👈 όριο */
    border-radius: 14px;
}


/* Services */
.service-grid {
    flex-direction: column;
}

.service-card {
    max-width: 95%;
    margin: auto;
}

/* Testimonials */
.testimonials blockquote {
    font-size: 0.95rem;
}

/* Steps */
.steps {
    flex-direction: column;
}

/* ------------------------------
   ABOUT PAGE
------------------------------ */
.about-us {
    padding: 10px;
}
.about-us h1 {
    font-size: 28px;
}
.about-us h2 {
    font-size: 24px;
}
.about-us p {
    font-size: 16px;
}

/* ------------------------------
   B2B PAGE
------------------------------ */
.hero-banner {
    padding: 40px 10px;
    background-size: cover;
}

.services-grid {
    grid-template-columns: 1fr !important;
}

.service {
    width: 95%;
    margin: auto;
}

.carousel-container {
    flex-direction: row;
    overflow-x: scroll;
    animation: none !important;
}

.carousel-slide {
    min-width: 80%;
}

/* ------------------------------
   COOKIES PAGE
------------------------------ */
.cookie-policy {
    padding: 20px;
}
.cookie-policy h1 {
    font-size: 26px;
}
.cookie-policy h2 {
    font-size: 22px;
}
.cookie-policy p,
.cookie-policy ul {
    font-size: 16px;
}

/* ------------------------------
   MRLAUNDRY+ PAGE
------------------------------ */

.mlp-grid {
    grid-template-columns: 1fr !important;
}

.mlp-card {
    margin: auto;
    width: 95%;
}

.mlp-section h2 {
    font-size: 26px;
}

.mlp-section p {
    font-size: 16px;
}

.mlp-buttons a {
    width: 90%;
    display: block;
    margin: 10px auto;
}
/* ------------------------------
   OUR SERVICES PAGE (MOBILE)
------------------------------ */

.services-page {
    padding: 10px;
}

.services-page .hero-banner {
    padding: 40px 15px;
    background-size: cover;
}

.services-page .hero-banner h1 {
    font-size: 32px;
}

.services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.service {
    width: 95%;
    margin: auto;
    padding: 20px;
}

.service img {
    width: 110px;
}
/* ------------------------------
   PRIVACY POLICY PAGE (MOBILE)
------------------------------ */
.privacy-policy {
    padding: 20px;
}

.privacy-policy h1 {
    font-size: 26px;
}

.privacy-policy h2 {
    font-size: 22px;
}

.privacy-policy p,
.privacy-policy li {
    font-size: 16px;
}
/* ------------------------------
   TERMS OF USE PAGE (MOBILE)
------------------------------ */

.terms-page {
    padding: 20px;
}

.terms-page h1 {
    font-size: 26px;
}

.terms-page h2 {
    font-size: 22px;
}

.terms-page p,
.terms-page li {
    font-size: 16px;
}
#cookie-banner{
    z-index: 2000;
}
/* ------------------------------
   LOCKER PAGE (MOBILE ONLY)
------------------------------ */

.locker-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 24px 14px;
    background: #f4f6fa;
    box-sizing: border-box;
}

.locker-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.locker-card label {
    display: block;
    margin: 14px 0 6px;
    font-size: 14px;
    font-weight: 500;
}

.locker-card input,
.locker-card textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px; /* iOS no-zoom */
    border-radius: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.locker-card button {
    margin-top: 22px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 0;
    background: #1966a4;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}
