 /* =========================================
           1. THEME: "PROFESSIONAL LUXURY"
           ========================================= */
        :root {
            --col-deep: #2D0C2E;
            --col-gold: #C58F7D;
            --bg-body: #F9F9F9;
            --white: #FFFFFF;
            --radius: 12px;
            --shadow: 0 10px 40px rgba(0,0,0,0.04);
            --trans: all 0.3s ease;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Manrope', sans-serif; background: var(--bg-body); color: #333; min-height: 100vh; }

        /* HEADER */
        nav {
            background: white; padding: 20px 5%; border-bottom: 1px solid #eee;
            display: flex; justify-content: space-between; align-items: center;
        }
        .brand { font-family: 'Playfair Display'; font-weight: 700; font-size: 1.5rem; color: var(--col-deep); }
        .badge { background: #eee; padding: 5px 10px; border-radius: 4px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #666; }

        /* CONTAINER */
        .container { max-width: 800px; margin: 50px auto; padding: 0 20px; padding-bottom: 100px; }

        /* STEPS UI */
        .progress-bar { 
            display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; float: none !important;
                width: 100% !important;
    background: transparent;
    border: none;
    box-shadow: none;
        }
        .progress-line {
            position: absolute; top: 15px; left: 0; width: 100%; height: 2px; 
            background: #e0e0e0; z-index: 0;
        }
        .progress-fill {
            position: absolute; top: 15px; left: 0; height: 2px; 
            background: var(--col-gold); z-index: 0; width: 0%; transition: width 0.4s ease;
        }
        
        .step-node {
            position: relative; z-index: 1; background: transparent; padding: 0 10px;
            display: flex; flex-direction: column; align-items: center; gap: 8px;
        }
        .node-circle {
            width: 32px; height: 32px; border-radius: 50%; background: white; border: 2px solid #ddd;
            color: #ddd !important; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem;
            transition: var(--trans);
        }
        .node-text { font-size: 1rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }

        .step-node.active .node-circle { border-color: var(--col-deep); color: var(--col-deep) !important; }
        .step-node.active .node-text { color: var(--col-deep); }
        .step-node.completed .node-circle { background: var(--col-gold); border-color: var(--col-gold); color: white; }

        /* FORM CARD */
        .form-card {
            background: white; border-radius: 20px; padding: 50px;
            box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
        }

        .step-content { display: none; animation: fadeIn 0.5s ease; }
        .step-content.active { display: block; }
        @keyframes fadeIn { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }

        .sec-title { font-family: 'Playfair Display'; font-size: 2rem; color: var(--col-deep); margin-bottom: 5px; }
        .sec-sub { color: #666; margin-bottom: 30px; display: block; }

        /* INPUTS */
        .input-group { margin-bottom: 25px; }
        .label { display: block; font-weight: 600; font-size: 1.1rem; color: #444; margin-bottom: 10px; float:left; margin-bottom: 10px; padding-left: 0px !important; }
        .req { color: #e74c3c; }

        .input-box, .select-box, textarea {
            width: 100%; padding: 14px 16px; border: 1px solid #e0e0e0; border-radius: var(--radius);
            font-size: 1rem; font-family: 'Manrope'; background: #fafafa; outline: none; transition: var(--trans);
        }
        .input-box:focus, .select-box:focus { background: white; border-color: var(--col-deep); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .w-100 { width:100% !important; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

        /* SPECIALTY TAGS */
        .tags-grid { display: flex; flex-wrap: wrap; gap: 10px; width:100%; }
        .tag-check { position: relative; cursor: pointer; margin-top: 4px; margin-bottom: 4px; }
        .tag-check input { position: absolute; opacity: 0; margin-bottom: 5px; margin-top: 10px; }
        .tag-box {
            padding: 5px 15px; background: white; border: 1px solid #eee; border-radius: 30px;
            font-size: 0.9rem; font-weight: 500; color: #555; transition: var(--trans);
        }
        .tag-check input:checked + .tag-box {
            background: var(--col-deep); color: white; border-color: var(--col-deep);
            box-shadow: 0 5px 15px rgba(45, 12, 46, 0.2);
        }

        /* FILE UPLOAD */
        [hidden], template {
            display: none !important;
        }
        .file-drop {
            border: 2px dashed #ddd; border-radius: var(--radius); padding: 30px; text-align: center;
            margin-top: 35px;
            cursor: pointer; transition: var(--trans); background: #fafafa;
        }
        .file-drop:hover { border-color: var(--col-gold); background: #fffcfb; }
        .file-icon { font-size: 2rem; color: #ccc; margin-bottom: 10px; }

        /* FOOTER ACTIONS */
        .actions { margin-top: 40px; display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 25px; }
        .btn-prev { background: none; border: none; color: #999; font-weight: 600; cursor: pointer; padding: 10px 20px; }
        .btn-next {
            background: var(--col-deep); color: white; border: none; padding: 12px 40px;
            border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.2s;
        }
        .btn-next:hover { background: var(--col-gold); transform: translateY(-2px); }

        /* SUCCESS */
        .success-box { text-align: center; padding: 40px 20px; }
        .s-icon { font-size: 4rem; color: #2ecc71; margin-bottom: 20px; }

        @media (max-width: 768px) {
            .grid-2 { grid-template-columns: 1fr; }
            .form-card { padding: 30px 20px; }
            .node-text { display: none; } /* Hide step text on mobile */
        }