:root {
    --nude: #D9C5B2;
    --earth: #A68A71;
    --dark: #121212;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--white); color: var(--dark); overflow-x: hidden; }

/* NAVBAR */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: white; /* Για να φαίνεται πάντα στο Pricing */
}

nav.scrolled {
    padding: 15px 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-logo { height: 75px; width: auto; transition: 0.3s; }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a { 
    text-decoration: none; color: var(--dark); 
    font-size: 0.75rem; text-transform: uppercase; 
    font-weight: 600; letter-spacing: 2px; transition: 0.3s;
}
.nav-links a:hover { color: var(--nude); }

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; margin: 5px; background: var(--dark); transition: 0.3s; }

/* PRICING CONTENT */
.pricing-container { padding: 180px 8% 100px; max-width: 1400px; margin: 0 auto; text-align: center; }

.main-title { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(40px, 8vw, 100px); 
    margin-bottom: 60px; 
    font-weight: 900;
}

/* PROCESS GRID */
.process-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    margin-bottom: 120px;
    text-align: left;
}

.process-step { padding: 30px; border-left: 1px solid #eee; transition: 0.3s; }
.process-step:hover { border-left: 1px solid var(--nude); background: #fdfdfd; }

.step-number { 
    font-family: 'Playfair Display', serif; font-size: 2.5rem; 
    color: var(--nude); display: block; margin-bottom: 15px; 
}
.process-step h3 { font-family: 'Playfair Display', serif; margin-bottom: 15px; font-size: 1.4rem; }
.process-step p { font-size: 0.95rem; line-height: 1.6; color: #666; }

.sub-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.intro-text { max-width: 600px; margin: 0 auto 60px; color: #888; }

/* PRICING WRAPPER */
.pricing-wrapper { max-width: 900px; margin: 0 auto; padding: 60px; background: #fff; border: 1px solid #f0f0f0; }
.price-section { margin-bottom: 60px; text-align: left; }
.category-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--nude); margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.price-row { display: flex; justify-content: space-between; padding: 25px 0; border-bottom: 1px solid #f9f9f9; text-align: left; }
.service-title { font-weight: 700; font-size: 1.1rem; display: block; }
.service-desc { font-size: 0.9rem; color: #888; margin-top: 5px; }
.amount { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; white-space: nowrap; }

.cta-area { background: var(--dark); color: white; padding: 60px; margin-top: 40px; text-align: center; }
.cta-button { 
    display: inline-block; margin-top: 30px; padding: 18px 40px; 
    background: var(--nude); color: black; text-decoration: none; 
    font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; 
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh; width: 80%;
        background: var(--white); flex-direction: column; align-items: center;
        justify-content: center; transition: 0.4s ease; z-index: 1001;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .is-active .bar:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

    .process-grid { grid-template-columns: 1fr; gap: 0; }
    .process-step { border-left: none; border-bottom: 1px solid #eee; padding: 40px 0; text-align: center; }
    
    .pricing-wrapper { padding: 30px 15px; border: none; }
    .price-row { flex-direction: column; gap: 10px; }
    .amount { color: var(--earth); align-self: flex-start; }
}

/* MODAL */
.modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
}
.modal-content { background: white; padding: 40px; width: 90%; max-width: 450px; position: relative; }
.close-modal { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; }
#mini-contact-form input, #mini-contact-form textarea { width: 100%; padding: 15px; margin-bottom: 10px; border: 1px solid #ddd; }
.send-btn { width: 100%; padding: 15px; background: var(--dark); color: white; border: none; cursor: pointer; font-weight: 700; }