/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-color: #f0fdf4;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --dark-bg: #0f172a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, #e0f2fe 0%, #dcfce7 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
    padding-top: 80px; /* Space for navbar */
}

/* --- Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.2s;
}

.nav-contact:hover {
    background: #e2e8f0;
}

/* --- Main App Container --- */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.05);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

/* (Keep existing step, grid, button, and input styles here) */
.step { display: none; animation: fadeIn 0.4s ease forwards; }
.step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

h2 { font-size: 24px; margin-bottom: 10px; text-align: center; }
p.subtitle { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 30px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.choice-btn { background: #f8fafc; border: 2px solid var(--border); border-radius: 16px; padding: 20px; text-align: center; cursor: pointer; transition: all 0.2s ease; }
.choice-btn:hover { border-color: var(--primary); background: #eff6ff; }
.choice-btn i { font-size: 32px; color: var(--primary); margin-bottom: 10px; display: block; }
.choice-btn span { font-weight: 600; font-size: 16px; }

select, input[type="tel"], input[type="datetime-local"] { width: 100%; padding: 15px; border: 1px solid var(--border); border-radius: 12px; font-size: 16px; margin-bottom: 15px; outline: none; transition: border 0.2s ease; }
select:focus, input:focus { border-color: var(--primary); }

.schedule-toggle { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; cursor: pointer; font-size: 14px; color: var(--text-main); font-weight: 500; }
.schedule-container { display: none; margin-bottom: 20px; }

.btn-main { width: 100%; background: var(--primary); color: white; border: none; padding: 16px; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 10px; }
.btn-main:hover { background: var(--primary-hover); }

.trust-badges { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-around; }
.badge { text-align: center; font-size: 12px; color: var(--text-muted); }
.badge i { font-size: 20px; color: var(--success); margin-bottom: 5px; display: block; }

.success-icon { width: 80px; height: 80px; background: #d1fae5; color: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 20px; }

/* --- Footer --- */
.site-footer {
    background: var(--dark-bg);
    color: #cbd5e1;
    padding: 60px 20px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.btn-accept { background: var(--primary); color: white; }
.btn-decline { background: #f1f5f9; color: var(--text-main); }

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: 0.3s;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 { margin: 0; font-size: 20px; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }

.modal-body {
    overflow-y: auto;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.modal-body h3 { color: var(--text-main); margin: 15px 0 5px; font-size: 16px; }